module Roda::RodaPlugins::DirectCall::ClassMethods
def base_rack_app_callable(new_api=true)
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)
def call(env) new(env)._roda_handle_main_route end