module Roda::RodaPlugins::Base::ClassMethods
def use(*args, &block)
called before calling #route to have an effect. Example:
Add a middleware to use for the rack application. Must be
def use(*args, &block) @middleware << [args, block].freeze @app = nil end