public
Description: Remote multi-server automation tool
Homepage: http://www.capify.org
Clone URL: git://github.com/jamis/capistrano.git
Search Repo:
jamis (author)
Sun May 11 16:56:21 -0700 2008
commit  610cb337af9ac1eec76880d907d24c8c24e4b036
tree    eab720919672c892d2372f0fa15faa4f462b67cb
parent  3dbc0d2bc5d3fb0cb8c384fbe99b62a429ab4bd5 parent  25764b3aa1c19bdb0a75df7d226ac29960a15452
capistrano / capistrano.gemspec
100644 29 lines (22 sloc) 0.801 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
Gem::Specification.new do |s|
 
  s.name = 'capistrano'
  s.version = PKG_VERSION
  s.platform = Gem::Platform::RUBY
  s.summary = <<-DESC.strip.gsub(/\n\s+/, " ")
Capistrano is a utility and framework for executing commands in parallel
on multiple remote machines, via SSH.
DESC
 
  s.files = Dir.glob("{bin,lib,examples,test}/**/*") + %w(README MIT-LICENSE CHANGELOG)
  s.has_rdoc = true
 
  s.bindir = "bin"
  s.executables << "cap" << "capify"
 
  s.add_dependency 'net-ssh', ">= 2.0.0"
  s.add_dependency 'net-sftp', ">= 2.0.0"
  s.add_dependency 'net-scp', ">= 1.0.0"
  s.add_dependency 'net-ssh-gateway', ">= 1.0.0"
  s.add_dependency 'highline'
 
  s.author = "Jamis Buck"
  s.email = "jamis@37signals.com"
  s.homepage = "http://www.capify.org"
  s.rubyforge_project = "capistrano"
 
end