forked from gvarela/configy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfigy.gemspec
29 lines (24 loc) · 914 Bytes
/
configy.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
Gem::Specification.new do |s|
s.name = "configy"
s.version = "1.2.1"
s.authors = [ "Gabe Varela", "Ben Marini", "Chip Miller", "Bram Swenson", "Jeremy Ruppel", 'Eric Holmes' ]
s.date = "2017-06-26"
s.email = "[email protected]"
s.summary = "Simple yaml driven configuration gem"
s.homepage = "http://github.com/bmarini/configy"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
s.required_rubygems_version = ">= 1.3.6"
s.add_runtime_dependency "hashie"
s.add_development_dependency "bundler", ">= 1.0.0"
s.add_development_dependency "minitest", "2.5.1"
s.add_development_dependency "rake"
s.add_development_dependency "rdoc"
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
end