class ActionDispatch::Routing::Mapper

Public Class Methods

normalize_name(name) click to toggle source
# File lib/action_dispatch/routing/mapper.rb, line 240
def self.normalize_name(name)
  normalize_path(name)[1..-1].gsub("/", "_")
end
normalize_path(path) click to toggle source

Invokes Rack::Mount::Utils.normalize path and ensure that (:locale) becomes (/:locale) instead of /(:locale). Except for root cases, where the latter is the correct one.

# File lib/action_dispatch/routing/mapper.rb, line 234
def self.normalize_path(path)
  path = Rack::Mount::Utils.normalize_path(path)
  path.gsub!(%r{/(\(+)/?}, '\1/') unless path =~ %r{^/\(+[^/]+\)$}
  path
end