jamis / capistrano

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!

This URL has Read+Write access

capistrano / Rakefile
6efd0095 » jamis 2006-03-05 part 2, rename switchtower ... 1 require "./lib/capistrano/version"
f9da6dbb » jamis 2005-08-03 Initial commit of the new s... 2
0d43efdb » jamis 2008-06-27 Use Echoe for rakefile mana... 3 begin
4 require 'echoe'
5 rescue LoadError
6 abort "You'll need to have `echoe' installed to use Capistrano's Rakefile"
f9da6dbb » jamis 2005-08-03 Initial commit of the new s... 7 end
8
0d43efdb » jamis 2008-06-27 Use Echoe for rakefile mana... 9 version = Capistrano::Version::STRING.dup
10 if ENV['SNAPSHOT'].to_i == 1
11 version << "." << Time.now.utc.strftime("%Y%m%d%H%M%S")
f74ab735 » jamis 2007-03-04 Logger and version tests. L... 12 end
13
0d43efdb » jamis 2008-06-27 Use Echoe for rakefile mana... 14 Echoe.new('capistrano', version) do |p|
15 p.changelog = "CHANGELOG.rdoc"
f9da6dbb » jamis 2005-08-03 Initial commit of the new s... 16
0d43efdb » jamis 2008-06-27 Use Echoe for rakefile mana... 17 p.author = "Jamis Buck"
18 p.email = "jamis@jamisbuck.org"
824d22bf » jamis 2005-08-30 Move switchtower to the too... 19
0d43efdb » jamis 2008-06-27 Use Echoe for rakefile mana... 20 p.summary = <<-DESC.strip.gsub(/\n\s+/, " ")
21 Capistrano is a utility and framework for executing commands in parallel
22 on multiple remote machines, via SSH.
23 DESC
04c9361a » jamis 2006-07-06 Add :clean task, and bump c... 24
0d43efdb » jamis 2008-06-27 Use Echoe for rakefile mana... 25 p.url = "http://www.capify.org"
26 p.need_zip = true
27 p.rdoc_pattern = /^(lib|README.rdoc|CHANGELOG.rdoc)/
df07381f » jamis 2008-06-27 Specify gem dependencies. 28
ad0a1c2c » jamis 2008-06-28 No, seriously. Gem dependen... 29 p.dependencies = ["net-ssh >=2.0.0",
30 "net-sftp >=2.0.0",
31 "net-scp >=1.0.0",
32 "net-ssh-gateway >=1.0.0",
df07381f » jamis 2008-06-27 Specify gem dependencies. 33 "highline"]
c472b364 » jamis 2007-04-26 Start writing tests for the... 34 end