module Roda::RodaPlugins::MultiRoute::ClassMethods

def route(name=nil, namespace=nil, &block)

Clear the multi_route regexp matcher for the namespace.
def route(name=nil, namespace=nil, &block)
  super
  if name
    self::RodaRequest.clear_named_route_regexp!(namespace)
  end
end