I like how Rails gives me flexibility in naming view files, ie index.erb
or index.html.erb
essentially do the same thing.
The problem is that I've merged two separate projects, where one uses filename.erb
for all its views and the other uses filename.html.erb
.
It seems that Rails expects only one naming scheme as I keep getting missing template errors for the views with only the .erb
extension.
Can I get around this? Should I even want to get around this? Or should I bite the bullet and manually rename half of my view files?