Created
January 10, 2016 14:13
-
-
Save aldesantis/53875d55cf09cc1f2f90 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 Crowdster | |
module Models | |
module Campaigner | |
def included(klass) | |
klass.class_eval do | |
has_many :campaigns, class_name: 'Crowdster::Campaign' | |
end | |
end | |
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 User < ActiveRecord::Base | |
include Crowdster::Models::Campaigner | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment