Skip to content

Instantly share code, notes, and snippets.

@yannick
Created April 13, 2015 20:46
Show Gist options
  • Select an option

  • Save yannick/67e7c654af761512ab36 to your computer and use it in GitHub Desktop.

Select an option

Save yannick/67e7c654af761512ab36 to your computer and use it in GitHub Desktop.
require "json"
File.each_line("/dev/stdin") do |line|
pull = JSON::PullParser.new(line)
pull.on_key!("meta") do
pull.on_key!("timestamp") do
puts pull.read_int
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment