Module: Redmineup::Patches::Compatibility::ApplicationControllerPatch

Defined in:
lib/redmineup/patches/compatibility/application_controller_patch.rb

Defined Under Namespace

Modules: ClassMethods

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object

:nodoc:



5
6
7
8
9
10
# File 'lib/redmineup/patches/compatibility/application_controller_patch.rb', line 5

def self.included(base) # :nodoc:
  base.extend(ClassMethods)
  base.class_eval do
    unloadable # Send unloadable so it will not be unloaded in development
  end
end