このエラーが発生します:
Sprockets::Helpers::RailsHelper::AssetPaths::AssetNotPrecompiledError in Main#index
Showing /etc/apache2/CrawlFish/app/views/layouts/application.html.erb where line #15 raised:
jquery-ui-1.8.20.custom.min isn't precompiled
config / environment / Production.rbに、次の行を追加しました。
config.assets.precompile += %w( jquery-ui-1.8.20.custom.min.js )
これを行った後でも、上記のプリコンパイルエラーが発生します。public /assets/manifest.ymlには、jquery-ui-1.8.20.custom.min.jsファイルのエントリはありません。ただし、パブリック/アセットには、次のファイルが生成されます。
jquery-ui-1.8.20.custom.min-3ef66af7d5b20341b5fceb4ad1b2755f.js
jquery-ui-1.8.20.custom.min-3ef66af7d5b20341b5fceb4ad1b2755f.js.gz
jquery-ui-1.8.20.custom.min.js
jquery-ui-1.8.20.custom.min.js.gz
この問題を解決するにはどうすればよいですか?