Sha256: 009ea3c4041117645ae5a89ef43293e01fdcdc80d526d7c59ce71e1fd76aea32

Contents?: true

Size: 1.26 KB

Versions: 11

Compression:

Stored size: 1.26 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', 'Gergely Brautigam']
  s.summary = 'Ruby implementation of http://goessner.net/articles/JsonPath/'
  s.description = 'Ruby implementation of http://goessner.net/articles/JsonPath/.'
  s.email = ['joshbuddy@gmail.com', 'skarlso777@gmail.com']
  s.extra_rdoc_files = ['README.md']
  s.files = `git ls-files`.split("\n")
  s.homepage = 'https://github.com/joshbuddy/jsonpath'
  s.rdoc_options = ['--charset=UTF-8']
  s.require_paths = ['lib']
  s.rubygems_version = '1.3.7'
  s.test_files = `git ls-files`.split("\n").select { |f| f =~ /^spec/ }
  s.rubyforge_project = 'jsonpath'
  s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
  s.licenses    = ['MIT']

  # dependencies
  s.add_runtime_dependency 'multi_json'
  s.add_development_dependency 'code_stats'
  s.add_development_dependency 'rake'
  s.add_development_dependency 'minitest', '~> 2.2.0'
  s.add_development_dependency 'phocus'
  s.add_development_dependency 'bundler'
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
jsonpath-0.8.10 jsonpath.gemspec
jsonpath-0.8.8 jsonpath.gemspec
jsonpath-0.8.7 jsonpath.gemspec
jsonpath-0.8.6 jsonpath.gemspec
jsonpath-0.8.5 jsonpath.gemspec
jsonpath-0.8.4 jsonpath.gemspec
jsonpath-0.8.3 jsonpath.gemspec
jsonpath-0.8.2 jsonpath.gemspec
jsonpath-0.7.2 jsonpath.gemspec
jsonpath-0.7.1 jsonpath.gemspec
jsonpath-0.7.0 jsonpath.gemspec