Module: Backlogs::MyControllerPatch
- Defined in:
- lib/backlogs_my_controller_patch.rb
Defined Under Namespace
Modules: ClassMethods, InstanceMethods
Class Method Summary (collapse)
-
+ (Object) included(base)
:nodoc:.
Class Method Details
+ (Object) included(base)
:nodoc:
5 6 7 8 9 10 11 12 13 |
# File 'lib/backlogs_my_controller_patch.rb', line 5 def self.included(base) # :nodoc: base.extend(ClassMethods) base.send(:include, InstanceMethods) base.class_eval do unloadable # Send unloadable so it will not be unloaded in development after_filter :save_backlogs_preferences, :only => [:account] end end |