Created
April 13, 2015 20:46
-
-
Save yannick/67e7c654af761512ab36 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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