Method: Build::RuleNode#apply!

Defined in:
lib/build/rule_node.rb

#apply!(scope) ⇒ Object



59
60
61
62
63
64
65
# File 'lib/build/rule_node.rb', line 59

def apply!(scope)
  @rule.apply!(scope, @arguments)
  
  if @callback
    scope.instance_exec(@arguments, &@callback)
  end
end