dotenv-rails.gemspec 649 B

1234567891011121314151617
  1. require File.expand_path("../lib/dotenv/version", __FILE__)
  2. require "English"
  3. Gem::Specification.new "dotenv-rails", Dotenv::VERSION do |gem|
  4. gem.authors = ["Brandon Keepers"]
  5. gem.email = ["brandon@opensoul.org"]
  6. gem.description = gem.summary = "Autoload dotenv in Rails."
  7. gem.homepage = "https://github.com/bkeepers/dotenv"
  8. gem.license = "MIT"
  9. gem.files = `git ls-files lib | grep rails`
  10. .split($OUTPUT_RECORD_SEPARATOR) + ["README.md", "LICENSE"]
  11. gem.add_dependency "dotenv", Dotenv::VERSION
  12. gem.add_development_dependency "spring"
  13. gem.add_development_dependency "railties", "~>4.0"
  14. end