Skip to content

Instantly share code, notes, and snippets.

@zocoi
Forked from vsavkin/ddd_example3_2.rb
Created May 2, 2014 19:14
Show Gist options
  • Save zocoi/7ab45e1ce1ec98b228c3 to your computer and use it in GitHub Desktop.
Save zocoi/7ab45e1ce1ec98b228c3 to your computer and use it in GitHub Desktop.
class Post < ActiveRecord::Base
has_many :comments
end
class TwitterNotification < ActiveRecord::Observer
observe :post
def after_create post
TwitterService.send_tweet post.subject
end
end
class TwitterService
def self.send_tweet subject
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