私はRailsの新機能です。ここで説明するように、私はZurbの基礎フロントエンドのフレームワークをインストール:http://www.zurb.com/article/814/yetify-your-rails-new-foundation-gem-and-Rails - アプリディレクトリ外のアセットにリンクする方法
私はアプリ/資産/スタイルシート/ 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 /アプリ/資産/スタイルシート/基盤/ 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ファイルをロードするにはどうすればよいですか?
*= require_directory ./foundation
それともfoundation-rails
宝石を使用することができます。おかげで...
https://github.com/zurb/foundation-rails/blob/master/README.markdownの指示に従ってみると、うまくいきませんでした。私はそれが私にとってRailsにとって全く新しいものでなければならないと思う。このディレクトリの.rvm/gems/ruby-1.9.2-p290/gems/zurb-foundation-2.1.0に移動できますが、それでも動作しません。 – migu