forked from capistrano/capistrano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
capistrano.gemspec
48 lines (45 loc) · 2 KB
/
capistrano.gemspec
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "capistrano/version"
Gem::Specification.new do |s|
s.name = "capistrano"
s.version = Capistrano::Version.to_s
s.platform = Gem::Platform::RUBY
s.authors = ["Jamis Buck", "Lee Hambley"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://github.com/capistrano/capistrano"
s.summary = %q{Capistrano - Welcome to easy deployment with Ruby over SSH}
s.description = %q{Capistrano is a utility and framework for executing commands in parallel on multiple remote machines, via SSH.}
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"]
s.extra_rdoc_files = [
"README.md"
]
if s.respond_to? :specification_version then
s.specification_version = 3
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"])
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"])
s.add_dependency(%q<net-ssh-gateway>, [">= 1.1.0"])
s.add_dependency(%q<highline>, [">= 0"])
s.add_dependency(%q<mocha>, ["0.9.12"])
end
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"])
s.add_dependency(%q<net-ssh-gateway>, [">= 1.1.0"])
s.add_dependency(%q<highline>, [">= 0"])
s.add_dependency(%q<mocha>, ["0.9.12"])
end
end