2011-03-30 13:36:16 -04:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
$:.push File.expand_path("../lib", __FILE__)
|
|
|
|
require "capistrano/version"
|
2011-03-22 13:16:54 -04:00
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
2012-02-19 12:29:11 -05:00
|
|
|
|
2011-03-30 13:36:16 -04:00
|
|
|
s.name = "capistrano"
|
|
|
|
s.version = Capistrano::Version.to_s
|
|
|
|
s.platform = Gem::Platform::RUBY
|
|
|
|
s.authors = ["Jamis Buck", "Lee Hambley"]
|
|
|
|
s.email = ["jamis@jamisbuck.org", "lee.hambley@gmail.com"]
|
|
|
|
s.homepage = "http://github.com/capistrano/capistrano"
|
|
|
|
s.summary = %q{Capistrano - Welcome to easy deployment with Ruby over SSH}
|
2011-03-22 13:16:54 -04:00
|
|
|
s.description = %q{Capistrano is a utility and framework for executing commands in parallel on multiple remote machines, via SSH.}
|
2011-03-30 13:36:16 -04:00
|
|
|
s.files = `git ls-files`.split("\n")
|
|
|
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
|
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
|
|
s.require_paths = ["lib"]
|
2011-03-22 13:16:54 -04:00
|
|
|
s.extra_rdoc_files = [
|
2013-01-21 20:22:55 -05:00
|
|
|
"README.md"
|
2011-03-22 13:16:54 -04:00
|
|
|
]
|
|
|
|
|
2012-12-18 06:01:09 -05:00
|
|
|
s.specification_version = 3 if s.respond_to? :specification_version
|
2013-04-02 14:26:59 -04:00
|
|
|
|
2012-12-18 06:01:09 -05:00
|
|
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
|
|
s.add_runtime_dependency(%q<highline>, [">= 0"])
|
|
|
|
s.add_runtime_dependency(%q<net-ssh>, [">= 2.0.14"])
|
|
|
|
s.add_runtime_dependency(%q<net-sftp>, [">= 2.0.0"])
|
|
|
|
s.add_runtime_dependency(%q<net-scp>, [">= 1.0.0"])
|
|
|
|
s.add_runtime_dependency(%q<net-ssh-gateway>, [">= 1.1.0"])
|
|
|
|
s.add_development_dependency(%q<mocha>, ["0.9.12"])
|
2011-03-22 13:16:54 -04:00
|
|
|
else
|
|
|
|
s.add_dependency(%q<net-ssh>, [">= 2.0.14"])
|
|
|
|
s.add_dependency(%q<net-sftp>, [">= 2.0.0"])
|
|
|
|
s.add_dependency(%q<net-scp>, [">= 1.0.0"])
|
Version 2.6.0
A rather large release, feature-version bump because of the new
multiple-gateways feature as implemented by Ryan Duryea (way to go!)
Please also note from this release that if you use Git submodules, the
Git-version requirement for the new implementation is now >= 1.5.6, from
previously un-documented. (1.5.6 is new-enough that I think this is
acceptable)
* Upgrade Net::SSH-gateway dependency to 1.1 (fixes a thread-deadlocking bug on MRI1.9)
* Respect "dry-run" on transfer methods (Florian Frank)
* Add support for multiple gateways: (Ryan Duryea)
set :gateway, {
'gate1.example.com' => 'server1.example.com',
[ 'gate2.example.com', 'gate3.example.com' ] => ['server5.example.com', 'server6.example.com' ]
}
* Properly support nested Git submodules, moves Gitit requirement to >= 1.5.6 [if you rely upon submodules] (Ken Miller)
* Fetch tags into the remote cache, allows deploying a tag when using Git, with the remote_cache strategy (Florian Frank)
* Various fixes to path handling bugs in the copt strategy. (Philippe Rathé)
2011-05-04 05:57:48 -04:00
|
|
|
s.add_dependency(%q<net-ssh-gateway>, [">= 1.1.0"])
|
2011-03-22 13:16:54 -04:00
|
|
|
s.add_dependency(%q<highline>, [">= 0"])
|
2012-04-19 19:23:03 -04:00
|
|
|
s.add_dependency(%q<mocha>, ["0.9.12"])
|
2011-03-22 13:16:54 -04:00
|
|
|
end
|
|
|
|
end
|