File: from_stdin.rb

package info (click to toggle)
ruby-yajl 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,980 kB
  • sloc: ansic: 2,473; ruby: 2,049; makefile: 4
file content (9 lines) | stat: -rw-r--r-- 286 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
$LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/../..')
$LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/../../lib')

require 'yajl'

# Usage: cat benchmark/subjects/item.json | ruby examples/from_stdin.rb

hash = Yajl::Parser.parse(STDIN)
puts hash.inspect