Flowdock
method

format

Importance_0
v4.1.8 - Show latest stable - 0 notes - Class: Route
format(path_options) 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/journey/route.rb, line 74
      def format(path_options)
        path_options.delete_if do |key, value|
          value.to_s == defaults[key].to_s && !required_parts.include?(key)
        end

        Visitors::Formatter.new(path_options).accept(path.spec)
      end
Register or log in to add new notes.