module Roda::RodaPlugins::PathMatchers::RequestMethods

def match_prefix(prefix)

Match when the current path segment starts with the given prefix.
def match_prefix(prefix)
  consume(self.class.cached_matcher([:prefix, prefix]){/#{prefix}([^\\\/]+)/})
end