forked from mdsol/dice_bag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdice_bag.gemspec
More file actions
21 lines (17 loc) · 816 Bytes
/
Copy pathdice_bag.gemspec
File metadata and controls
21 lines (17 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 = ['asmith@mdsol.com', 'jcarres@mdsol.com']
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.executables = Dir['bin/*'].map{ |f| File.basename(f) }
s.require_paths = ['lib']
s.add_dependency 'rake'
s.add_development_dependency 'aruba', '~> 0.5.1'
s.add_development_dependency 'rspec', '~> 2.12'
end