0

現在の設定

GemFile

#More stuff above
gem "flatui-rails"

アプリケーション.css

/*
 * 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 .
 *= require flat_ui
 */

開発モードでページを読み込もうとすると、*ファイル「flat_iu」が見つかりません*というエラーが表示されます

すでにバンドルを実行しています

bundle show flat_ui 結果: ~/.rvm/gems/ruby-2.0.0-p247/gems/flatui-rails-0.0.4

この時点で何が欠けているのかわかりません。これは私の最初のRailsアプリなので、上で省略しているものがあるかどうかわかりません。

環境

  • rails バージョン 4 - 開発サーバー
  • ルビーバージョン 2.0.0p247
  • Linux (基本 OS)
4

1 に答える 1

1

ライブラリの名前のつづりが間違っているようです。アンダースコアではなくダッシュです。

*= require flat-ui
于 2013-10-12T00:49:49.417 に答える