module Roda::RodaPlugins::Break::RequestMethods

def if_match(_)

Handle break inside match blocks, restoring remaining path.
def if_match(_)
  rp = @remaining_path
  super
ensure
  @remaining_path = rp
end