Module: MasterView::PluginLoadTracking

Included in:
DirectiveBase
Defined in:
lib/masterview/plugin_load_tracking.rb

Overview

mix this in so that these become class methods mix in like so class FooPluginBase

include PluginLoadTracking

end

Defined Under Namespace

Modules: ClassMethods, InstanceMethods

Class Method Summary collapse

Class Method Details

.included(other_module) ⇒ Object



33
34
35
36
37
# File 'lib/masterview/plugin_load_tracking.rb', line 33

def self::included(other_module)
  other_module.module_eval{ include InstanceMethods }
  other_module.extend ClassMethods
  other_module
end