Rails 3 route appends _index to route name
It is because your resource is named :planner instead of :planners that Rails decided to add the _index to any collection nested underneath. My guess it is there for readability. The action named in the collection normally translates to a verb, so I can see why this makes sense. Take the typical photos resource example … Read more