module Roda::RodaPlugins::Base::InstanceMethods

def _roda_handle_route

thrown by the block.
Treat the given block as a routing block, catching :halt if
def _roda_handle_route
  catch(:halt) do
    @_request.block_result(yield)
    @_response.finish
  end
end