Created
April 22, 2010 14:47
-
-
Save stevenhaddox/375317 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
module Notable | |
def self.included(base) | |
base.has_many :notes, :as => :notable | |
base.accepts_nested_attributes_for :notes | |
end | |
end | |
class User < ActiveRecord::Base | |
include Notable | |
end | |
class Book < ActiveRecord::Base | |
include Notable | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment