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

def collection_name

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