public
Fork of jamis/capistrano
Description: Remote multi-server automation tool
Homepage: http://www.capify.org
Clone URL: git://github.com/schacon/capistrano.git
Search Repo:
capistrano / capistrano.gemspec
100644 30 lines (22 sloc) 0.879 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
30
require './lib/capistrano/version'
 
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.require_path = 'lib'
  s.has_rdoc = true
 
  s.bindir = "bin"
  s.executables << "cap" << "capify"
 
  s.add_dependency 'net-ssh', ">= #{Capistrano::Version::SSH_REQUIRED.join(".")}", "< 1.99.0"
  s.add_dependency 'net-sftp', ">= #{Capistrano::Version::SFTP_REQUIRED.join(".")}", "< 1.99.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