mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
f303df3e4d
git-svn-id: http://svn.rubyonrails.org/rails/tools/capistrano@4567 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
31 lines
931 B
Ruby
31 lines
931 B
Ruby
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 framework and utility for executing commands in parallel
|
|
on multiple remote machines, via SSH. The primary goal is to simplify and
|
|
automate the deployment of web applications.
|
|
DESC
|
|
|
|
s.files = Dir.glob("{bin,lib,examples,test}/**/*")
|
|
s.files.concat %w(README MIT-LICENSE ChangeLog)
|
|
s.require_path = 'lib'
|
|
s.autorequire = 'capistrano'
|
|
|
|
s.bindir = "bin"
|
|
s.executables << "cap"
|
|
|
|
s.add_dependency 'rake', ">= 0.7.0"
|
|
|
|
s.add_dependency 'net-ssh', ">= #{Capistrano::Version::SSH_REQUIRED.join(".")}"
|
|
s.add_dependency 'net-sftp', ">= #{Capistrano::Version::SFTP_REQUIRED.join(".")}"
|
|
|
|
s.author = "Jamis Buck"
|
|
s.email = "jamis@37signals.com"
|
|
s.homepage = "http://www.rubyonrails.org"
|
|
|
|
end
|