-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathfig_newton.gemspec
23 lines (19 loc) · 1.05 KB
/
fig_newton.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/fig_newton/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Jeff Morgan", "Steve Jackson"]
gem.email = ["[email protected]", "[email protected]"]
gem.license = 'MIT'
gem.description = %q{Provides a simple mechanism to maintain and use different configurations stored in yml files.}
gem.summary = %q{Provides a simple mechanism to maintain and use different configurations stored in yml files.}
gem.homepage = "http://github.com/cheezy/fig_newton"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "fig_newton"
gem.require_paths = ["lib"]
gem.version = FigNewton::VERSION
gem.add_dependency 'yml_reader', '>= 0.7'
gem.add_development_dependency 'rspec', '>= 3.2.0'
gem.add_development_dependency 'cucumber', '>= 1.3.19'
end