-
Notifications
You must be signed in to change notification settings - Fork 83
/
capistrano-bundler.gemspec
28 lines (24 loc) · 1.09 KB
/
capistrano-bundler.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'capistrano-bundler'
spec.version = '2.1.1'
spec.license = 'MIT'
spec.authors = ['Tom Clements', 'Lee Hambley', 'Kir Shatrov']
spec.description = %q{Bundler support for Capistrano 3.x}
spec.summary = %q{Bundler support for Capistrano 3.x}
spec.homepage = 'https://github.com/capistrano/bundler'
spec.metadata = {
"changelog_uri" => "https://github.com/capistrano/bundler/releases"
}
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_dependency 'capistrano', '~> 3.1'
spec.add_development_dependency 'bundler', '~> 2.1'
spec.add_development_dependency 'danger'
spec.add_development_dependency 'rake'
end