forked from laserlemon/figaro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfigaro.gemspec
More file actions
24 lines (19 loc) · 840 Bytes
/
figaro.gemspec
File metadata and controls
24 lines (19 loc) · 840 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
# encoding: utf-8
Gem::Specification.new do |gem|
gem.name = "figaro"
gem.version = "0.4.1"
gem.authors = ["Steve Richert"]
gem.email = ["steve.richert@gmail.com"]
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.add_dependency "rails", "~> 3.0"
gem.add_development_dependency "appraisal", "~> 0.4"
gem.add_development_dependency "aruba", "~> 0.4"
gem.add_development_dependency "cucumber", "~> 1.0"
gem.add_development_dependency "rake", ">= 0.8.7"
gem.add_development_dependency "rspec", "~> 2.0"
gem.files = `git ls-files`.split($\)
gem.test_files = gem.files.grep(/^features\//)
gem.require_paths = ["lib"]
end