class ActionDispatch::Routing::Mapper::Resources::Resource

def collection_name

and singular form are the same.
Checks for uncountable plurals, and appends "_index" if the plural
def collection_name
  singular == plural ? "#{plural}_index" : plural
end