Created
December 19, 2013 05:45
-
-
Save mkdynamic/8034924 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Todo < ActiveRecord::Base | |
concerning :EventTracking do | |
included do | |
has_many :events | |
end | |
def latest_event | |
... | |
end | |
private | |
def some_internal_method | |
... | |
end | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Todo < ActiveRecord::Base | |
module EventTracking | |
def self.included(base) | |
base.has_many :events | |
end | |
def latest_event | |
... | |
end | |
private | |
def some_internal_method | |
... | |
end | |
end | |
include EventTracking | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment