Guest User

Untitled

a guest
Jan 3rd, 2019
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. require 'stream'
  2.  
  3. s = Stream.new(:username => 'me', :password => 'pass')
  4. s.filter(:track => "Twitter") do |o|
  5. # do something with o, a status element
  6. puts o.user.screen_name
  7. puts o.text
  8. end
Add Comment
Please, Sign In to add comment