I for one welcome this change and deprecation warning. It means that you should stop using this:
render :action => :index
And, if necessary, you should start using this:
render :index
The code is simpler and prettier. Don’t use render :template, unless you really need to.
If you use vim, you can use this search and replace string:
:%s/render :action => /render /g
