Skip to content

Instantly share code, notes, and snippets.

@azcoov
Created April 12, 2013 21:28
Show Gist options
  • Save azcoov/5375277 to your computer and use it in GitHub Desktop.
Save azcoov/5375277 to your computer and use it in GitHub Desktop.
Stripe Tweet Stream
TweetStream::Daemon.new('tweetstream').on_error do |message|
puts "error: #{message}"
end.on_reconnect do |timeout, retries|
puts "reconnecting..."
end.track('stripe') do |status|
puts "@#{status.user.screen_name}: #{status.text}"
status.user_mentions.each do |mention|
puts "user #{mention.screen_name} was mentioned."
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment