Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

root/tags/capistrano_2-0-0/capistrano.gemspec

Revision 6577, 0.8 kB (checked in by minam, 1 year ago)

point at new capistrano homepage

Line 
1 require './lib/capistrano/version'
2
3 Gem::Specification.new do |s|
4
5   s.name = 'capistrano'
6   s.version = PKG_VERSION
7   s.platform = Gem::Platform::RUBY
8   s.summary = <<-DESC.strip.gsub(/\n\s+/, " ")
9     Capistrano is a utility and framework for executing commands in parallel
10     on multiple remote machines, via SSH.
11   DESC
12
13   s.files = Dir.glob("{bin,lib,examples,test}/**/*") + %w(README MIT-LICENSE CHANGELOG)
14   s.require_path = 'lib'
15   s.autorequire = 'capistrano'
16
17   s.bindir = "bin"
18   s.executables << "cap" << "capify"
19
20   s.add_dependency 'net-ssh', ">= #{Capistrano::Version::SSH_REQUIRED.join(".")}"
21   s.add_dependency 'net-sftp', ">= #{Capistrano::Version::SFTP_REQUIRED.join(".")}"
22   s.add_dependency 'highline'
23
24   s.author = "Jamis Buck"
25   s.email = "jamis@37signals.com"
26   s.homepage = "http://www.capify.org"
27
28 end
Note: See TracBrowser for help on using the browser.