-
Notifications
You must be signed in to change notification settings - Fork 0
/
easy-deployment.gemspec
24 lines (20 loc) · 1.18 KB
/
easy-deployment.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/easy-deployment/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Jeremy Olliver", "Nigel Ramsay", "Shevaun Coker", "Cameron Fowler", "Joseph Leniston"]
gem.email = ["[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]"]
gem.description = %q{Easy deployment: includes a generator, and capistrano configuration}
gem.summary = %q{Gem for encapsulating Abletech's deployment practices}
gem.homepage = "https://github.com/AbleTech/easy-deployment"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "easy-deployment"
gem.require_paths = ["lib"]
gem.version = Easy::Deployment::VERSION
gem.license = "GPLv3"
gem.add_runtime_dependency 'rails', '>= 3.0.0'
gem.add_runtime_dependency 'capistrano', '>= 2.15', '< 3'
gem.add_development_dependency 'bundler'
gem.add_development_dependency 'rspec', '~> 2.0'
end