Module: RedmineCrm::Patches::ApplicationControllerPatch

Defined in:
lib/redmine_crm/compatibility/application_controller_patch.rb

Defined Under Namespace

Modules: ClassMethods

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object

:nodoc:



4
5
6
7
8
9
# File 'lib/redmine_crm/compatibility/application_controller_patch.rb', line 4

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