Skip to content

Instantly share code, notes, and snippets.

@dhalai
Last active August 29, 2015 13:59
Show Gist options
  • Save dhalai/10454485 to your computer and use it in GitHub Desktop.
Save dhalai/10454485 to your computer and use it in GitHub Desktop.
class SomeModel < ActiveRecord::Base
include Notify
tracked :on => {
:update => [{'publish', proc { |model| model.published? } },
}
end
class SomeSubscriber
include Notify
def self.subscribe
subscribe_to('publish') do |model|
some code
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment