public
Description: Remote multi-server automation tool. This repository is no longer being actively maintained. Please ask on the mailing list to find someone who has a well-maintained fork. Thanks!
Homepage: http://www.capify.org
Clone URL: git://github.com/jamis/capistrano.git
jamis (author)
Fri Jun 27 10:14:48 -0700 2008
commit  0d43efdbc1bc1eab84051f78b9a988c93189cbb6
tree    371113df73a9f5c4de88b342bdf2c51fa5a2123b
parent  babc48a04c799d21145f843080c57b91119fbae9
capistrano / Rakefile
100644 29 lines (22 sloc) 0.768 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
require "./lib/capistrano/version"
 
begin
  require 'echoe'
rescue LoadError
  abort "You'll need to have `echoe' installed to use Capistrano's Rakefile"
end
 
version = Capistrano::Version::STRING.dup
if ENV['SNAPSHOT'].to_i == 1
  version << "." << Time.now.utc.strftime("%Y%m%d%H%M%S")
end
 
Echoe.new('capistrano', version) do |p|
  p.changelog = "CHANGELOG.rdoc"
 
  p.author = "Jamis Buck"
  p.email = "jamis@jamisbuck.org"
 
  p.summary = <<-DESC.strip.gsub(/\n\s+/, " ")
Capistrano is a utility and framework for executing commands in parallel
on multiple remote machines, via SSH.
DESC
 
  p.url = "http://www.capify.org"
  p.need_zip = true
  p.rdoc_pattern = /^(lib|README.rdoc|CHANGELOG.rdoc)/
end