Sha256: 8546d5655743d0a7efab79578dbf61c4ca219f859037679089b64d6f44f61fe9
Contents?: true
Size: 1.09 KB
Versions: 2
Compression:
Stored size: 1.09 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'dotenv/beefy/version' Gem::Specification.new do |spec| spec.name = "dotenv-beefy" spec.version = Dotenv::Beefy::VERSION spec.authors = ["BetterUp Developers"] spec.email = ["developers@betterup.co"] spec.summary = %q{Load all the application environments } spec.description = %q{Load all relevant .env files to boot usable application environment} spec.homepage = "https://github.com/betterup/dotenv-beefy" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_runtime_dependency 'dotenv' spec.add_runtime_dependency 'rails', '>= 5.0' spec.add_development_dependency "bundler", "~> 2.1" spec.add_development_dependency "rake", ">= 12.3.3" spec.add_development_dependency "rspec", ">= 3.4.0" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dotenv-beefy-0.2.1 | dotenv-beefy.gemspec |
dotenv-beefy-0.2.0 | dotenv-beefy.gemspec |