module Roda::RodaPlugins::ParamsCapturing::RequestMethods

def _match_string(str)

capture names if param capturing.
Add the capture names from this string to list of param
def _match_string(str)
  cap_len = @captures.length
  if (ret = super) && (pc = @_params_captures) && (cap_len != @captures.length)
    # Handle use with placeholder_string_matchers plugin
    pc.concat(str.scan(/(?<=:)\w+/))
  end
  ret
end