-
-
Notifications
You must be signed in to change notification settings - Fork 514
Expand file tree
/
Copy pathdotenv-rails.gemspec
More file actions
21 lines (17 loc) · 742 Bytes
/
dotenv-rails.gemspec
File metadata and controls
21 lines (17 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 dotenv-rails.rb`.split("\n") + ["README.md", "LICENSE"]
gem.add_dependency "dotenv", Dotenv::VERSION
gem.add_dependency "railties", ">= 6.1"
gem.add_development_dependency "spring"
gem.metadata = {
"changelog_uri" => "https://github.com/bkeepers/dotenv/releases",
"funding_uri" => "https://github.com/sponsors/bkeepers"
}
end