Sha256: 7cfb70b4234c308396765d08162d44e1a277fa3a6c12e5f064840bc677c74912

Contents?: true

Size: 1.07 KB

Versions: 5

Compression:

Stored size: 1.07 KB

Contents

# -*- encoding: utf-8 -*-

require File.join(File.dirname(__FILE__), 'lib', 'jsonpath', 'version')

Gem::Specification.new do |s|
  s.name = 'jsonpath'
  s.version = JsonPath::VERSION
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Joshua Hull"]
  s.summary = "Ruby implementation of http://goessner.net/articles/JsonPath/"
  s.description = "Ruby implementation of http://goessner.net/articles/JsonPath/."
  s.email = %q{joshbuddy@gmail.com}
  s.extra_rdoc_files = ['README.md']
  s.files = `git ls-files`.split("\n")
  s.homepage = %q{http://github.com/joshbuddy/jsonpath}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.rubygems_version = %q{1.3.7}
  s.test_files = `git ls-files`.split("\n").select{|f| f =~ /^spec/}
  s.rubyforge_project = 'jsonpath'

  # dependencies
  s.add_runtime_dependency 'json'
  s.add_development_dependency 'code_stats'
  s.add_development_dependency 'rake'
  s.add_development_dependency 'rspec', '~> 2.5.0'
  s.add_development_dependency 'bundler',  '~> 1.0.0'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
jsonpath-0.3.1 jsonpath.gemspec
jsonpath-0.3.0 jsonpath.gemspec
jsonpath-0.2.3 jsonpath.gemspec
jsonpath-0.2.2 jsonpath.gemspec
jsonpath-0.2.1 jsonpath.gemspec