json-stream-path 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Json::Stream::Path::VERSION
9
9
  spec.authors = ["Manojs"]
10
10
  spec.email = ["manojs.nitt@gmail.com"]
11
- spec.description = %q{Gem desc}
12
- spec.summary = %q{Gem summary}
11
+ spec.description = %q{A streaming JSON parser (generates SAX-like events) and JSON Path like implementation to parse small amount of data in a large JSON file.}
12
+ spec.summary = %q{A parser best suited for huge JSON documents that don't fit in memory and to parse small amount of data in a large JSON file.}
13
13
  spec.homepage = "https://github.com/bethink/json-stream-path"
14
14
  spec.license = "MIT"
15
15
 
@@ -1,7 +1,7 @@
1
1
  module Json
2
2
  module Stream
3
3
  module Path
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.2"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: json-stream-path
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -59,7 +59,8 @@ dependencies:
59
59
  - - ! '>='
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
- description: Gem desc
62
+ description: A streaming JSON parser (generates SAX-like events) and JSON Path like
63
+ implementation to parse small amount of data in a large JSON file.
63
64
  email:
64
65
  - manojs.nitt@gmail.com
65
66
  executables: []
@@ -87,7 +88,6 @@ files:
87
88
  - lib/json/stream/j_path_tree.rb
88
89
  - lib/json/stream/parser.rb
89
90
  - lib/json/stream/path/version.rb
90
- - lib/json/stream/version.rb
91
91
  - test/buffer_test.rb
92
92
  - test/builder_test.rb
93
93
  - test/j_path_tree_test.rb
@@ -118,7 +118,8 @@ rubyforge_project:
118
118
  rubygems_version: 1.8.24
119
119
  signing_key:
120
120
  specification_version: 3
121
- summary: Gem summary
121
+ summary: A parser best suited for huge JSON documents that don't fit in memory and
122
+ to parse small amount of data in a large JSON file.
122
123
  test_files:
123
124
  - test/buffer_test.rb
124
125
  - test/builder_test.rb
@@ -1,7 +0,0 @@
1
- # encoding: UTF-8
2
-
3
- module JSON
4
- module Stream
5
- VERSION = "1.0"
6
- end
7
- end