module Roda::RodaPlugins::PlaceholderStringMatchers::RequestMethods

def _match_string(str)

def _match_string(str)
  if str.index(":")
    consume(self.class.cached_matcher(str){Regexp.escape(str).gsub(/:(\w+)/){|m| _match_symbol_regexp($1)}})
  else
    super
  end
end