Use Tweetstream in Ruby
// description of your code here
Successfully installed yajl-ruby-0.6.3 Successfully installed daemons-1.0.10 Successfully installed intridea-tweetstream-0.1.3 3 gems installed Installing ri documentation for yajl-ruby-0.6.3... Installing ri documentation for daemons-1.0.10... Installing RDoc documentation for yajl-ruby-0.6.3... Installing RDoc documentation for daemons-1.0.10... require 'rubygems' require 'tweetstream' user, pass = 'jrobertson', 'secret' TweetStream::Client.new(user,pass).sample do |status| puts "[#{status.user.screen_name}] #{status.text}" sleep 0.5 end