We have an older Rails 3.2 app that is using the Asset pipeline. It is now including both the original js files from app/assets AND an application.js. Ideally, we'd like to remove the application.js from the page in development. Is there a config variable to have the uncompressed, un-minified JavaScript files from app/assets only?
The layout application.html.erb is
<%= stylesheet_link_tag "application" %>
<%= javascript_include_tag "application" %>