Rails 3.2 で Sprockets を使用してこれを行う「デフォルト」の方法は、Sprockets マニフェスト コードを含む application.css (application.css.scss ではない) というファイルを用意することだと思います。これは次のようになります...
application.css (アプリ/アセット/スタイルシート)
/*
* This is a manifest file that'll automatically include all the stylesheets available in this directory
* and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
* the top of the compiled file, but it's generally better to create a new file per style scope.
*= require_self
*= require main_scss_file
*/
内部にコンテンツを追加する require_self と、メインの scss ファイルへの参照である require some_other_file の少なくとも 2 行が必要です。rake assets:precompile のデフォルトの動作は、application.js とアプリケーション css をコンパイルすることです。
Rail ジェネレーターによって生成された production.rb コードは、application.css がデフォルトでコンパイルされることを指定します。(構成/環境)
# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
# config.assets.precompile += %w( search.js )
config.assets.precompile += %w( home.js )
アプリケーション.erb
<%= stylesheet_link_tag 'application' %>