Sha256: 3c13c3d1e686c3376df859b8c0f1305fc8920a5dd48546e7045f984a5216f753

Contents?: true

Size: 1.23 KB

Versions: 1

Compression:

Stored size: 1.23 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.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

1 entries across 1 versions & 1 rubygems

Version Path
env_json-0.2.1 env_json.gemspec