Sha256: 53e03f5e74391e3246ed01825fe5d0aa680107fd4437eb671b47c7ca570f3a7d

Contents?: true

Size: 1.26 KB

Versions: 2

Compression:

Stored size: 1.26 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'env_json/version'

Gem::Specification.new do |spec|
  spec.name          = "env_json"
  spec.version       = EnvJson::VERSION
  spec.authors       = ["Vincent Hellot"]
  spec.email         = ["hellvinz@gmail.com"]
  spec.license       = "MIT"

  spec.summary       = %q{Load ENV variables from a JSON file}
  spec.description   = %q{Load ENV variables from a JSON file. Usefull with ejson https://github.com/Shopify/ejson}
  spec.homepage      = "http://github.com/hellvinz/env_json"

  if spec.respond_to?(:metadata)
    spec.metadata['allowed_push_host'] = 'https://rubygems.org'
  else
    raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
  end

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "bin"
  spec.executables   = []
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest"
  spec.add_development_dependency "simplecov"
  spec.add_development_dependency "simplecov-rcov"
  spec.add_development_dependency "yard"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
env_json-0.3.0 env_json.gemspec
env_json-0.2.2 env_json.gemspec