mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
4acea20beb
(That is [spaceliteraltab] to type a tab on the CLI do Ctrl+v, tab) git ls-files | xargs sed -i '' -e 's/[ ]*$//' ]'
40 lines
1.7 KiB
Ruby
40 lines
1.7 KiB
Ruby
# -*- 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 = ["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}
|
|
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"
|
|
]
|
|
|
|
s.specification_version = 3 if s.respond_to? :specification_version
|
|
|
|
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
|
|
end
|