What is the difference between render :action => \"new\" and render :template => \"users/new\"? I have heard that rendering template, we can
Previously, calling render "foo/bar" in a controller action was equivalent to render file: "foo/bar". In Rails 4.2, this has been changed to mean render template: "foo/bar" instead. If you need to render a file, please change your code to use the explicit form (render file: "foo/bar") instead.
http://guides.rubyonrails.org/4_2_release_notes.html#render-with-a-string-argument