Rails加载除application.css.scss之外的所有样式表

我正在使用Rails书籍跟踪敏捷Web开发,并遇到了一个问题。

除application.css.scss外,assets文件夹中的所有样式表都正确加载

运行bundle exec rake assets:precompile将所有资产上的副本bundle exec rake assets:precompile到公共文件夹,这似乎有效,但我不想每次都这样做。

在application.html.erb中:

    Pragprog Books Online Store  "all" %>    <body class=''>     

在application.css.scss中:

 /* * This is a manifest file that'll be compiled into application.css, which will * include all the files listed below. * * Any CSS and SCSS file within this directory, lib/assets/stylesheets, * vendor/assets/stylesheets, or vendor/assets/stylesheets of plugins, if any, * can be referenced here using a relative path. * * 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_tree . */ /* START_HIGHLIGHT */ #banner { background: #FFF; padding: 10px; border-bottom: 2px solid; font: small-caps 40px/40px "Times New Roman", serif; color: #282; text-align: center; img { float: left; } } #notice { color: #000 !important; border: 2px solid red; padding: 1em; margin-bottom: 2em; background-color: #f0f0f0; font: bold smaller sans-serif; } #columns { background: #141; #main { margin-left: 17em; padding: 1em; background: white; } #side { float: left; padding: 1em 2em; width: 13em; background: #141; ul { padding: 0; li { list-style: none; a { color: #bfb; font-size: small; } } } } } /* END_HIGHLIGHT */ 

我注意到有很多人有这个问题。 我没有运气就尝试了大部分解决方案。

将CSS定义移动到另一个文件中,并将清单重命名为application.css。 应该这样做