I am new to ruby on rails and whenever i create and access a controller i can see it loads a new css & js file with name as the name of the controller...
How can i make it load only 1 css and js file called style.css and site.js for example?
what is the purpose of having multiple js & css files whenever i access a contrller?
if i go to application.html.erb and change
<%= stylesheet_link_tag "application", :media => "all" %>
<%= javascript_include_tag "application" %>
to
<%= stylesheet_link_tag("application") %>
<%= javascript_include_tag("application") %>
it doesnt seem to help