module Roda::RodaPlugins::Pass::RequestMethods

def if_match(_)

Handle passing inside the match block.
def if_match(_)
  rp = @remaining_path
  ret = catch(:pass){super}
  @remaining_path = rp
  ret
end