module Roda::RodaPlugins::Pass::RequestMethods

def always

Handle passing inside the match block.
def always
  catch(:pass){super}
end

def if_match(_)

Handle passing inside the match block.
def if_match(_)
  catch(:pass){super}
end

def pass

Skip the current match block as if it did not match.
def pass
  throw :pass
end