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.
Classes and Modules
Public Class methods
configure(app)
[show source]
# File lib/roda/plugins/direct_call.rb 11 def self.configure(app) 12 app.send(:build_rack_app) 13 end