public
Description: Remote multi-server automation tool. This repository is no longer being actively maintained. Please ask on the mailing list to find someone who has a well-maintained fork. Thanks!
Homepage: http://www.capify.org
Clone URL: git://github.com/jamis/capistrano.git
jamis (author)
Tue Apr 29 21:35:20 -0700 2008
commit  17e7072f6057f495393e525a6a8724d2e883105d
tree    df8f8a0285f15e208684175fb2afe11ffa7fa1bd
parent  c746803b22c1117a76f79013b38fc0da15f1b2b4
capistrano / capistrano.gemspec
100644 31 lines (22 sloc) 1.06 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
31
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}/**/*") + %w(README MIT-LICENSE CHANGELOG THANKS)
  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::MINIMUM_SSH_REQUIRED.join(".")}", "< #{Capistrano::Version::MAXIMUM_SSH_REQUIRED.join('.')}"
  s.add_dependency 'net-sftp', ">= #{Capistrano::Version::MINIMUM_SFTP_REQUIRED.join(".")}", "< #{Capistrano::Version::MAXIMUM_SFTP_REQUIRED.join('.')}"
 
  s.author = "Jamis Buck"
  s.email = "jamis@37signals.com"
  s.homepage = "http://www.rubyonrails.org"
 
end