Skip to content

Instantly share code, notes, and snippets.

@vsavkin
Created March 4, 2012 22:03
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 vsavkin/1975022 to your computer and use it in GitHub Desktop.
Save vsavkin/1975022 to your computer and use it in GitHub Desktop.
Post Sending Tweets
class Post < ActiveRecord::Base
has_many :comments
after_create :send_tweet
def send_tweet
twitter = Twitter.login(username, password)
twitter.send_tweet generate_tweet_from_subject(subject)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment