forked from capistrano/capistrano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
capistrano.gemspec
35 lines (28 loc) · 1.38 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
# -*- 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
gem.authors = ["Tom Clements", "Lee Hambley"]
gem.email = ["[email protected]", "[email protected]"]
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}
gem.homepage = "http://capistranorb.com/"
gem.files = `git ls-files`.split($/)
gem.executables = ['cap', 'capify']
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.licenses = ['MIT']
gem.post_install_message = <<eos
Capistrano 3.1 has some breaking changes, like `deploy:restart` callback should be added manually to your deploy.rb. Please, check the CHANGELOG: http://goo.gl/SxB0lr
If you're upgrading Capistrano from 2.x, we recommend to read the upgrade guide: http://goo.gl/4536kB
eos
gem.add_dependency 'sshkit', '~> 1.3'
gem.add_dependency 'rake', '>= 10.0.0'
gem.add_dependency 'i18n'
gem.add_dependency 'highline'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'mocha'
end