Sha256: 8590f4c407097356fe8c24e0f3fe06bbb6d62cef2a692983c29a62136405e0ef
Contents?: true
Size: 970 Bytes
Versions: 1
Compression:
Stored size: 970 Bytes
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 = "" 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_development_dependency "bundler", "~> 1.9" spec.add_development_dependency "rake", "~> 10.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dotenv-beefy-0.1.0 | dotenv-beefy.gemspec |