Method: Jace::Executer#call

Defined in:
lib/jace/executer.rb

#callObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

calls the execution

Returns:

  • (Object)

    result of block call

See Also:



32
33
34
35
36
37
38
# File 'lib/jace/executer.rb', line 32

def call
  execute_actions(before)
  result = block.call if block
  execute_actions(after)

  result
end