Created
September 10, 2013 05:27
-
-
Save mschae/6505318 to your computer and use it in GitHub Desktop.
Millercast
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source "https://rubygems.org" | |
| gem 'tweetstream' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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