2013-02-01 04:19:14 -05:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
lib = File.expand_path('../lib', __FILE__)
|
|
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
|
require 'capistrano/version'
|
|
|
|
|
|
|
|
Gem::Specification.new do |gem|
|
|
|
|
gem.name = "capistrano"
|
|
|
|
gem.version = Capistrano::VERSION
|
2013-07-02 05:45:47 -04:00
|
|
|
gem.authors = ["Tom Clements", "Lee Hambley"]
|
|
|
|
gem.email = ["seenmyfate@gmail.com", "lee.hambley@gmail.com"]
|
2013-07-04 03:43:51 -04:00
|
|
|
gem.description = %q{Capistrano is a utility and framework for executing commands in parallel on multiple remote machines, via SSH.}
|
|
|
|
gem.summary = %q{Capistrano - Welcome to easy deployment with Ruby over SSH}
|
2013-10-13 04:44:52 -04:00
|
|
|
gem.homepage = "http://capistranorb.com/"
|
2013-02-01 04:19:14 -05:00
|
|
|
|
|
|
|
gem.files = `git ls-files`.split($/)
|
2013-10-16 04:16:06 -04:00
|
|
|
gem.executables = ['cap', 'capify']
|
2013-02-01 04:19:14 -05:00
|
|
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
|
|
gem.require_paths = ["lib"]
|
2013-02-01 09:41:51 -05:00
|
|
|
|
2013-10-18 07:07:13 -04:00
|
|
|
gem.licenses = ['MIT']
|
|
|
|
|
2014-01-03 04:46:40 -05:00
|
|
|
gem.post_install_message = <<eos
|
2014-08-08 13:30:55 -04:00
|
|
|
Capistrano 3.1 has some breaking changes. Please check the CHANGELOG: http://goo.gl/SxB0lr
|
2014-01-03 04:46:40 -05:00
|
|
|
|
|
|
|
If you're upgrading Capistrano from 2.x, we recommend to read the upgrade guide: http://goo.gl/4536kB
|
2014-08-08 13:30:55 -04:00
|
|
|
|
|
|
|
The `deploy:restart` hook for passenger applications is now in a separate gem called capistrano-passenger. Just add it to your Gemfile and require it in your Capfile.
|
2014-01-03 04:46:40 -05:00
|
|
|
eos
|
2013-07-28 08:46:48 -04:00
|
|
|
|
2014-08-21 05:50:00 -04:00
|
|
|
gem.required_ruby_version = '>= 1.9.3'
|
2014-01-03 05:41:35 -05:00
|
|
|
gem.add_dependency 'sshkit', '~> 1.3'
|
2013-02-01 09:41:51 -05:00
|
|
|
gem.add_dependency 'rake', '>= 10.0.0'
|
2013-02-08 06:15:27 -05:00
|
|
|
gem.add_dependency 'i18n'
|
2013-02-01 09:41:51 -05:00
|
|
|
|
|
|
|
gem.add_development_dependency 'rspec'
|
|
|
|
gem.add_development_dependency 'mocha'
|
2013-02-01 04:19:14 -05:00
|
|
|
end
|