1
0
Fork 0
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:
Lee Hambley 2010-10-06 14:14:19 +02:00
parent 0bb0c8ac53
commit d92b17b55c

View file

@ -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