module Roda::RodaPlugins::Public::RequestMethods

def public

Serve files from the public directory if the file exists and this is a GET request.
def public
  public_serve_with(roda_class.opts[:public_server])
end