-
-
Notifications
You must be signed in to change notification settings - Fork 281
Expand file tree
/
Copy pathfigaro.gemspec
More file actions
25 lines (18 loc) · 760 Bytes
/
figaro.gemspec
File metadata and controls
25 lines (18 loc) · 760 Bytes
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
# encoding: utf-8
Gem::Specification.new do |gem|
gem.name = "figaro"
gem.version = "1.3.0"
gem.author = "Steve Richert"
gem.email = "[email protected]"
gem.summary = "Simple Rails app configuration"
gem.description = "Simple, Heroku-friendly Rails app configuration using ENV and a single YAML file"
gem.homepage = "https://github.com/laserlemon/figaro"
gem.license = "MIT"
gem.required_ruby_version = ">= 2.5.0"
gem.add_dependency "thor", ">= 0.14.0", "< 2"
gem.add_development_dependency "bundler", ">= 1.7.0", "< 3"
gem.add_development_dependency "rake", ">= 10.4.0", "< 14"
gem.files = `git ls-files`.split($\)
gem.test_files = gem.files.grep(/^spec/)
gem.executables << "figaro"
end