The new way to include all css files without specifying all the files in rails 3.2, is
application.html.erb:
“all” %>
app/assets/stylesheets/application.css:
require_tree .
And all the assset files are now under app/assets, not /public/.
The new way to include all css files without specifying all the files in rails 3.2, is
application.html.erb:
“all” %>
app/assets/stylesheets/application.css:
require_tree .
And all the assset files are now under app/assets, not /public/.