I think the default method for this in Rails 3.2 using Sprockets should have a file called application.css (not application.css.scss) that contains the Sprockets manifest code. What should look something like this ...
application.css (app / assets / stylesheets)
There must be at least two lines, which must be require_self, which adds content within itself and requires some_other_file, which is a link to your main scss file. Default behavior for rake assets: the default is to compile your application.js and css application
production.rb generated by Rail generators indicates that application.css is compiled by default. (Config / Medium)
application.erb
<%= stylesheet_link_tag 'application' %>
source share