class ActionDispatch::Routing::Mapper::Resources::Resource
def collection_name
Checks for uncountable plurals, and appends "_index" if the plural
def collection_name singular == plural ? "#{plural}_index" : plural end
def collection_name singular == plural ? "#{plural}_index" : plural end