method

matches_filter?

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: RouteWrapper
matches_filter?(filter, value) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/routing/inspector.rb, line 9
      def matches_filter?(filter, value)
        return __getobj__.path.match(value) if filter == :exact_path_match

        value.match?(public_send(filter))
      end
Register or log in to add new notes.