module Roda::RodaPlugins::DirectCall::ClassMethods

def base_rack_app_callable(new_api=true)

performance.
If new_api is true, use the receiver as the base rack app for better
def base_rack_app_callable(new_api=true)
  if new_api
    self
  else
    super
  end
end

def call(env)

Call the application without middlware.
def call(env)
  new(env)._roda_handle_main_route
end