module Roda::RodaPlugins::Base::InstanceMethods

def call(&block)

Deprecated method for the previous main route dispatch API.
def call(&block)
  # RODA4: Remove
  catch(:halt) do
    r = @_request
    r.block_result(instance_exec(r, &block)) # Fallback
    @_response.finish
  end
end