bruce-jsonpath 0.8.0 → 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/jsonpath.gemspec +55 -0
- metadata +2 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.8.
|
1
|
+
0.8.1
|
data/jsonpath.gemspec
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{jsonpath}
|
5
|
+
s.version = "0.8.1"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["Bruce Williams"]
|
9
|
+
s.date = %q{2009-07-17}
|
10
|
+
s.email = %q{bruce@codefluency.com}
|
11
|
+
s.extra_rdoc_files = [
|
12
|
+
"LICENSE",
|
13
|
+
"README.markdown"
|
14
|
+
]
|
15
|
+
s.files = [
|
16
|
+
".document",
|
17
|
+
".gitignore",
|
18
|
+
"LICENSE",
|
19
|
+
"README.markdown",
|
20
|
+
"Rakefile",
|
21
|
+
"VERSION",
|
22
|
+
"jsonpath.gemspec",
|
23
|
+
"lib/jsonpath.rb",
|
24
|
+
"lib/jsonpath/nodes.rb",
|
25
|
+
"lib/jsonpath/parser.rb",
|
26
|
+
"lib/jsonpath/parser.treetop",
|
27
|
+
"test/parser_test.rb",
|
28
|
+
"test/reference_test.rb",
|
29
|
+
"test/test_helper.rb"
|
30
|
+
]
|
31
|
+
s.has_rdoc = true
|
32
|
+
s.homepage = %q{http://github.com/bruce/jsonpath}
|
33
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
34
|
+
s.require_paths = ["lib"]
|
35
|
+
s.rubygems_version = %q{1.3.2}
|
36
|
+
s.summary = %q{JSONPath support for Ruby}
|
37
|
+
s.test_files = [
|
38
|
+
"test/parser_test.rb",
|
39
|
+
"test/reference_test.rb",
|
40
|
+
"test/test_helper.rb"
|
41
|
+
]
|
42
|
+
|
43
|
+
if s.respond_to? :specification_version then
|
44
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
45
|
+
s.specification_version = 3
|
46
|
+
|
47
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
48
|
+
s.add_runtime_dependency(%q<treetop>, [">= 0"])
|
49
|
+
else
|
50
|
+
s.add_dependency(%q<treetop>, [">= 0"])
|
51
|
+
end
|
52
|
+
else
|
53
|
+
s.add_dependency(%q<treetop>, [">= 0"])
|
54
|
+
end
|
55
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bruce-jsonpath
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bruce Williams
|
@@ -38,6 +38,7 @@ files:
|
|
38
38
|
- README.markdown
|
39
39
|
- Rakefile
|
40
40
|
- VERSION
|
41
|
+
- jsonpath.gemspec
|
41
42
|
- lib/jsonpath.rb
|
42
43
|
- lib/jsonpath/nodes.rb
|
43
44
|
- lib/jsonpath/parser.rb
|