Skip to content

Instantly share code, notes, and snippets.

@aldesantis
Created January 10, 2016 12:26
Show Gist options
  • Save aldesantis/5c6a8c53982b29661c5b to your computer and use it in GitHub Desktop.
Save aldesantis/5c6a8c53982b29661c5b to your computer and use it in GitHub Desktop.
module Crowdster
class Engine < ::Rails::Engine
isolate_namespace Crowdster
config.to_prepare do
if Crowdster.config
Crowdster.config.user_class.constantize.class_eval do
has_many :campaigns, class_name: 'Crowdster::Campaign'
end
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment