Sha256: 4608ed7d2805910ff5dbc40c2a51e2e8834bb55cccd804d7d254c1b93e950025
Contents?: true
Size: 1.75 KB
Versions: 0
Compression: gzip
Compressed size: 799 Bytes
Stored size: 799 Bytes
Contents
--- !ruby/object:Gem::Specification name: json-stream version: !ruby/object:Gem::Version prerelease: version: 0.1.1 platform: ruby authors: - David Graham autorequire: bindir: bin cert_chain: [] date: 2011-04-21 00:00:00 Z dependencies: [] description: |- A finite state machine based JSON parser that generates events for each state change. This allows us to stream both the JSON document into memory and the parsed object graph out of memory to some other process. This is much like an XML SAX parser that generates events during parsing. There is no requirement for the document nor the object graph to be fully buffered in memory. This is best suited for huge JSON documents that won't fit in memory. For example, streaming and processing large map/reduce views from Apache CouchDB. email: david.malcom.graham@gmail.com executables: [] extensions: [] extra_rdoc_files: [] files: - LICENSE - Rakefile - README - lib/json/stream/buffer.rb - lib/json/stream/builder.rb - lib/json/stream/parser.rb - lib/json/stream.rb - test/buffer_test.rb - test/builder_test.rb - test/parser_test.rb homepage: http://github.com/dgraham/json-stream licenses: [] post_install_message: rdoc_options: [] require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement none: false requirements: - - ">=" - !ruby/object:Gem::Version version: 1.9.1 required_rubygems_version: !ruby/object:Gem::Requirement none: false requirements: - - ">=" - !ruby/object:Gem::Version version: "0" requirements: [] rubyforge_project: rubygems_version: 1.7.2 signing_key: specification_version: 3 summary: A streaming JSON parser that generates SAX-like events. test_files: - test/buffer_test.rb - test/builder_test.rb - test/parser_test.rb