Sha256: 488726240d2f1023b98a5cb967bff6b9371d4200822ff48886c3e867f7bad871
Contents?: true
Size: 1005 Bytes
Versions: 1
Compression:
Stored size: 1005 Bytes
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "json_deep_parse/version" Gem::Specification.new do |spec| spec.name = "json_deep_parse" spec.version = JsonDeepParse::VERSION spec.authors = ["spaceghoul"] spec.email = ["mbanbury@gmail.com"] spec.summary = "Deeply parse heavily escaped and nested JSON" spec.homepage = "https://github.com/spaceghoul/json_deep_parse" spec.license = "MIT" spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "json" spec.add_development_dependency "bundler", "~> 1.16" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "minitest", "~> 5.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
json_deep_parse-0.1.0 | json_deep_parse.gemspec |