module Roda::RodaPlugins::DirectCall
The direct_call plugin makes the call class method skip the middleware stack (app.call will still call the middleware). This can be used as an optimization, as the Roda
class itself can be used as the callable, which is faster than using a lambda.
Public Class Methods
Source
# File lib/roda/plugins/direct_call.rb, line 11 def self.configure(app) app.send(:build_rack_app) end