Sha256: fa644776a65561b7ac5f40bc98c47825eef86df7f15646130dcceb14d4c81c11

Contents?: true

Size: 1.27 KB

Versions: 7

Compression:

Stored size: 1.27 KB

Contents

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

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

Gem::Specification.new do |s|
  s.name = 'jsonpathv2'
  s.version = JsonPath::VERSION
  s.required_rubygems_version =
    Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
  s.authors = ['Gergely Brautigam']
  s.summary = 'Ruby implementation of http://goessner.net/articles/JsonPath/'
  s.description = 'Ruby implementation of http://goessner.net/articles/JsonPath/.'
  s.email = 'skarlso777@gmail.com'
  s.extra_rdoc_files = ['README.md']
  s.files = `git ls-files`.split("\n")
  s.homepage = 'https://github.com/Skarlso/jsonpathv2'
  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 = 'jsonpathv2'
  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

7 entries across 7 versions & 1 rubygems

Version Path
jsonpathv2-0.0.9 jsonpathv2.gemspec
jsonpathv2-0.0.8 jsonpathv2.gemspec
jsonpathv2-0.0.7 jsonpathv2.gemspec
jsonpathv2-0.0.6 jsonpathv2.gemspec
jsonpathv2-0.0.4 jsonpathv2.gemspec
jsonpathv2-0.0.3 jsonpathv2.gemspec
jsonpathv2-0.0.2 jsonpathv2.gemspec