File: dotenv-rails.gemspec

package info (click to toggle)
ruby-dotenv 2.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 260 kB
  • sloc: ruby: 769; makefile: 6
file content (18 lines) | stat: -rw-r--r-- 650 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require File.expand_path("../lib/dotenv/version", __FILE__)
require "English"

Gem::Specification.new "dotenv-rails", Dotenv::VERSION do |gem|
  gem.authors       = ["Brandon Keepers"]
  gem.email         = ["brandon@opensoul.org"]
  gem.description   = gem.summary = "Autoload dotenv in Rails."
  gem.homepage      = "https://github.com/bkeepers/dotenv"
  gem.license       = "MIT"
  gem.files         = `git ls-files lib | grep rails`.split(
    $OUTPUT_RECORD_SEPARATOR
  ) + ["README.md", "LICENSE"]

  gem.add_dependency "dotenv", Dotenv::VERSION
  gem.add_dependency "railties", ">= 3.2", "< 6.0"

  gem.add_development_dependency "spring"
end