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