clear!()
public

No documentation available.

# File actionpack/lib/action_dispatch/routing/route_set.rb, line 109
        def clear!
          @helpers.each do |helper|
            @module.module_eval do
              remove_possible_method helper
            end
          end

          @routes = {}
          @helpers = []
        end