module Roda::RodaPlugins::NotFound
def self.configure(app, &block)
If a block is given, install the block as the not_found handler.
def self.configure(app, &block) if block app.not_found(&block) end end
def self.load_dependencies(app)
Require the status_handler plugin
def self.load_dependencies(app) app.plugin :status_handler end