Created
June 7, 2012 10:23
-
-
Save atton/2888061 to your computer and use it in GitHub Desktop.
ruby bot
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
# -*- coding: utf-8 -*- | |
require 'twitter' | |
Twitter.configure do |config| | |
config.consumer_key = gets.chomp | |
config.consumer_secret = gets.chomp | |
config.oauth_token = gets.chomp | |
config.oauth_token_secret = gets.chomp | |
end | |
Twitter.update("なんかいれて") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment