module Roda::RodaPlugins::StaticRouting::RequestMethods

def static_route(&block)

control to the given block.
the remaining path to the emptry string and passing
Assume that this request matches a static route, setting
def static_route(&block)
  @remaining_path = ''
  always do
    scope.instance_exec(self, &block)
  end
end