View rendering should use a defined preference. ie: erb, haml, json, etc.
You shouldn't have to specify which view you want to render with a render call. It should simply glob the matching views and use the defined precedence.
Must maintain the ability to override views.
View paths should be relative to the application. Sure you can manually add additional paths, but you shouldn't have to if you're just using the convention of having a views folder at the root of your project.
View rendering should use a defined preference. ie: erb, haml, json, etc.
You shouldn't have to specify which view you want to render with a
render
call. It should simply glob the matching views and use the defined precedence.Must maintain the ability to override views.
View paths should be relative to the application. Sure you can manually add additional paths, but you shouldn't have to if you're just using the convention of having a
views
folder at the root of your project.