Sha256: 4437a0e401faa5cafd9bb3819e5df6475d7bdf28564b9ef39412de358585f749
Contents?: true
Size: 1.25 KB
Versions: 1
Compression:
Stored size: 1.25 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" spec.add_development_dependency "rake", "~> 12.3.3" 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.3.2 | env_json.gemspec |