Created
May 8, 2014 05:51
-
-
Save mmmpa/ae85a9d8c8a74248cd87 to your computer and use it in GitHub Desktop.
This file contains 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
namespace :twitter do | |
task :tweet, ['message'] do |t, args| | |
require 'twitter' | |
YOUR_CONSUMER_KEY = '' | |
YOUR_CONSUMER_SECRET = '' | |
YOUR_OAUTH_TOKEN = '' | |
YOUR_OAUTH_TOKEN_SECRET = '' | |
client = Twitter::REST::Client.new do |config| | |
config.consumer_key = YOUR_CONSUMER_KEY | |
config.consumer_secret = YOUR_CONSUMER_SECRET | |
config.oauth_token = YOUR_OAUTH_TOKEN | |
config.oauth_token_secret = YOUR_OAUTH_TOKEN_SECRET | |
end | |
client.update(args.message) | |
end | |
task :tweet_test do | |
Rake::Task['twitter:tweet'].invoke('from rake') | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment