Sha256: 8c88df7e42c2d16c9de0eec14d21b2dffdd4d951386a349585872202fa6cd7d4

Contents?: true

Size: 661 Bytes

Versions: 5

Compression:

Stored size: 661 Bytes

Contents

# encoding: UTF-8
$LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/../../lib')

require 'yajl/gzip'
require 'yajl/deflate'
require 'yajl/http_stream'
require 'uri'

unless (username = ARGV[0]) && (password = ARGV[1])
  puts "\nUsage: ruby examples/http/twitter_stream_api.rb username password\n\n"
  exit(0)
end
captured = 0
uri = URI.parse("http://#{username}:#{password}@stream.twitter.com/1/statuses/sample.json")

trap('INT') {
  puts "\n\nCaptured #{captured} objects from the stream"
  puts "CTRL+C caught, later!"
  exit(0)
}

Yajl::HttpStream.get(uri, :symbolize_keys => true) do |hash|
  STDOUT.putc '.'
  STDOUT.flush
  captured += 1
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
yajl-ruby-0.7.8 examples/http/twitter_stream_api.rb
yajl-ruby-0.7.7 examples/http/twitter_stream_api.rb
benofsky-yajl-ruby-0.7.7 examples/http/twitter_stream_api.rb
benofsky-yajl-ruby-0.7.6 examples/http/twitter_stream_api.rb
yajl-ruby-0.7.6 examples/http/twitter_stream_api.rb