module Roda::RodaPlugins::NotFound::ClassMethods

def not_found(&block)

Install the given block as the not_found handler.
def not_found(&block)
  define_method(:not_found, &block)
  private :not_found
end