私はRailsが初めてです。ここで説明されているように、Zurb Foundation フロントエンド フレームワークをインストールしました: http://www.zurb.com/article/814/yetify-your-rails-new-foundation-gem-and-
app/assets/stylesheets/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 foundation
*= require_tree .
*/
しかし、私の見解ではこの行
<%= stylesheet_link_tag "application" %>
私が作成したファイル zurb_foundation/app/assets/stylesheets/foundation/index.css をロードしません:
couldn't find file 'foundation'
(in /Users/migu/railsapps/maneki1/app/assets/stylesheets/application.css:6)
zurb_foundation/app/assets/stylesheets/foundation/ の下に配置したファイルとすべての CSS ファイルをロードするにはどうすればよいですか? ありがとう...