module Roda::RodaPlugins::Base::ClassMethods

def use(*args, &block)

Roda.use Rack::ShowExceptions

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