module Roda::RodaPlugins::DirectCall::ClassMethods
Public Instance Methods
Source
# File lib/roda/plugins/direct_call.rb, line 17 def call(env) new(env)._roda_handle_main_route end
Call the application without middlware.
Private Instance Methods
Source
# File lib/roda/plugins/direct_call.rb, line 25 def base_rack_app_callable(new_api=true) if new_api self else super end end
If new_api is true, use the receiver as the base rack app for better performance.
Calls superclass method