Sha256: 216de1895bd0b84301e8d07f49f0b07929e0799f0f7414e113f33d3ff3f2160b
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "json_path/version" Gem::Specification.new do |spec| spec.name = "json_path" spec.version = JsonPath::VERSION spec.authors = ["Luis Landeiro Ribeiro"] spec.email = ["ribeiro.luis@gmail.com"] spec.summary = %q{Ruby conversion of the Javascript JsonPath from goessner} spec.description = %q{Ruby conversion of the Javascript JsonPath from http://goessner.net/articles/JsonPath/} spec.homepage = "https://github.com/lribeiro/json_path" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "bin" spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.16" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
json_path-0.1.0 | json_path.gemspec |