Skip to content

Instantly share code, notes, and snippets.

@46bit
Created May 9, 2012 00:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 46bit/2640623 to your computer and use it in GitHub Desktop.
Save 46bit/2640623 to your computer and use it in GitHub Desktop.
CLI Tweet
#!/usr/bin/env ruby
require 'twitter'
Twitter.configure do |config|
# See https://dev.twitter.com/apps
config.consumer_key = ""
config.consumer_secret = ""
config.oauth_token = ""
config.oauth_token_secret = ""
end
Twitter.update ARGV[0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment