Skip to content

Instantly share code, notes, and snippets.

@vsavkin
Created March 4, 2012 22:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vsavkin/1975026 to your computer and use it in GitHub Desktop.
Save vsavkin/1975026 to your computer and use it in GitHub Desktop.
Refactored Post
class Post < ActiveRecord::Base
has_many :comments
end
class TwitterNotification < ActiveRecord::Observer
observe :post
def after_create post
twitter = Twitter.login(username, password)
twitter.send_tweet generate_tweet_from_subject(post.subject)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment