Method: Tap::App::Stack#call

Defined in:
lib/tap/app/stack.rb

#call(node, inputs) ⇒ Object

Checks app for termination and then calls the node with the inputs:

node.call(*inputs)


18
19
20
21
# File 'lib/tap/app/stack.rb', line 18

def call(node, inputs)
  app.check_terminate
  node.call(*inputs)
end