Method: Dynflow::Action.inherited

Defined in:
lib/dynflow/action.rb

.inherited(child) ⇒ Object



37
38
39
40
41
# File 'lib/dynflow/action.rb', line 37

def self.inherited(child)
  children[child.name] = child
  child.inherit_execution_plan_hooks(execution_plan_hooks.dup)
  super child
end