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

root/tags/capistrano_1-4-1/capistrano.gemspec

Revision 4832, 0.9 kB (checked in by minam, 2 years ago)

Fix gemspec to include license file, etc.

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 framework and utility for executing commands in parallel
10     on multiple remote machines, via SSH. The primary goal is to simplify and
11     automate the deployment of web applications.
12   DESC
13
14   s.files = Dir.glob("{bin,lib,examples,test}/**/*") + %w(README MIT-LICENSE CHANGELOG THANKS)
15   s.require_path = 'lib'
16   s.autorequire = 'capistrano'
17
18   s.bindir = "bin"
19   s.executables << "cap"
20
21   s.add_dependency 'rake', ">= 0.7.0"
22
23   s.add_dependency 'net-ssh', ">= #{Capistrano::Version::SSH_REQUIRED.join(".")}"
24   s.add_dependency 'net-sftp', ">= #{Capistrano::Version::SFTP_REQUIRED.join(".")}"
25
26   s.author = "Jamis Buck"
27   s.email = "jamis@37signals.com"
28   s.homepage = "http://www.rubyonrails.org"
29
30 end
Note: See TracBrowser for help on using the browser.