forked from mdsol/dice_bag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdice_bag.gemspec
23 lines (19 loc) · 873 Bytes
/
dice_bag.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require File.expand_path('../lib/dice_bag/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'dice_bag'
s.version = DiceBag::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Andrew Smith', 'Jordi Carres']
s.email = ['[email protected]', '[email protected]']
s.summary = 'Dice Bag is a library of rake tasks for configuring web apps in the style of The Twelve-Factor App. It also provides continuous integration tasks that rely on the configuration tasks.'
s.homepage = "https://github.com/mdsol/dice_bag"
s.files = Dir['lib/**/*']
s.test_files = Dir['spec/**/*']
s.require_paths = ['lib']
s.add_dependency 'rake'
s.add_dependency 'thor', '~> 0.0'
s.add_dependency 'diff-lcs', '~> 1.0'
s.add_development_dependency 'aruba', '~> 0.5.1'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'bundler'
end