Skip to content

Instantly share code, notes, and snippets.

@mschae
Created September 10, 2013 05:27
Show Gist options
  • Save mschae/6505318 to your computer and use it in GitHub Desktop.
Save mschae/6505318 to your computer and use it in GitHub Desktop.
Millercast
source "https://rubygems.org"
gem 'tweetstream'
#!/usr/bin/env ruby
require 'bundler'
Bundler.require
TweetStream.configure do |config|
config.consumer_key = ''
config.consumer_secret = ''
config.oauth_token = ''
config.oauth_token_secret = ''
end
TweetStream::Client.new.follow(42956737) do |t|
`say #{t.text}`
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment