method

format

format(path_options)
public

No documentation available.

# 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