mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
Temporarily restoring Jeweler, as I don't need that hassle right now
This commit is contained in:
parent
0bb0c8ac53
commit
d92b17b55c
1 changed files with 21 additions and 0 deletions
21
Rakefile
21
Rakefile
|
@ -7,3 +7,24 @@ end
|
|||
|
||||
task :default => :test
|
||||
|
||||
begin
|
||||
require 'jeweler'
|
||||
Jeweler::Tasks.new do |gem|
|
||||
gem.version
|
||||
gem.name = "capistrano"
|
||||
gem.executables = %W(capify cap)
|
||||
gem.summary = %Q{Capistrano - Welcome to easy deployment with Ruby over SSH}
|
||||
gem.description = %Q{Capistrano is a utility and framework for executing commands in parallel on multiple remote machines, via SSH.}
|
||||
gem.homepage = "http://github.com/capistrano/capistrano"
|
||||
gem.email = [ "jamis@jamisbuck.org", "lee.hambley@gmail.com" ]
|
||||
gem.authors = [ "Jamis Buck", "Lee Hambley" ]
|
||||
gem.add_dependency "net-ssh", ">=2.0.14"
|
||||
gem.add_dependency "net-sftp", ">=2.0.0"
|
||||
gem.add_dependency "net-scp", ">=1.0.0"
|
||||
gem.add_dependency "net-ssh-gateway", ">=1.0.0"
|
||||
gem.add_dependency "highline"
|
||||
gem.add_development_dependency "mocha", ">= 0"
|
||||
end
|
||||
rescue LoadError
|
||||
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
||||
end
|
Loading…
Reference in a new issue