Flowdock
method

widths

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: ConsoleFormatter
widths(routes) private

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 180
        def widths(routes)
          [routes.map { |r| r[:name].length }.max || 0,
           routes.map { |r| r[:verb].length }.max || 0,
           routes.map { |r| r[:path].length }.max || 0]
        end
Register or log in to add new notes.