module CallableTree::Node::External::Verbose

Public Instance Methods

call(input = nil, **options) click to toggle source
Calls superclass method
# File lib/callable_tree/node/external/verbose.rb, line 13
def call(input = nil, **options)
  output = super(input, **options)
  routes = self.routes

  Output.new(output, options, routes)
end
verbosified?() click to toggle source
# File lib/callable_tree/node/external/verbose.rb, line 9
def verbosified?
  true
end