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:57:03 -0700 2008
commit  4df3ac3b34122870310820199b41e1ee362d8d3c
tree    588e04ab8f67cbf2684b56c2e4cef3509d23485c
parent  610cb337af9ac1eec76880d907d24c8c24e4b036
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