Give that I have a model called Apple and it has a controller ApplesController, the routes are:
Apple
ApplesController
resources :apples apples GET
For those seeking only to rename the helper method part:
resources :apples, as: "cars"
I.e. this would replace apples_path with cars_path, but still using the same controller/action.
apples_path
cars_path