Sha256: 20b8dd57aa4645594e12eb8d5b17be408fd155abef561175e3f575892d291802
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'json/stream/path/version' Gem::Specification.new do |spec| spec.name = "json-stream-path" spec.version = Json::Stream::Path::VERSION spec.authors = ["Manojs"] spec.email = ["manojs.nitt@gmail.com"] spec.description = %q{A streaming JSON parser (generates SAX-like events) and JSON Path like implementation to parse small amount of data in a large JSON file.} spec.summary = %q{A parser best suited for huge JSON documents that don't fit in memory and to parse small amount of data in a large JSON file.} spec.homepage = "https://github.com/bethink/json-stream-path" spec.license = "MIT" spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" spec.add_development_dependency "pry" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
json-stream-path-0.0.2 | json-stream-path.gemspec |