forked from bkeepers/dotenv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdotenv.gemspec
More file actions
21 lines (18 loc) · 803 Bytes
/
dotenv.gemspec
File metadata and controls
21 lines (18 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/dotenv/version', __FILE__)
Gem::Specification.new do |gem|
gem.version = Dotenv::VERSION
gem.authors = ["Brandon Keepers"]
gem.email = ["brandon@opensoul.org"]
gem.description = %q{Loads environment variables from `.env`.}
gem.summary = %q{Loads environment variables from `.env`.}
gem.homepage = "https://github.com/bkeepers/dotenv"
gem.license = 'MIT'
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "dotenv"
gem.require_paths = ["lib"]
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
end