1

ケースを説明するのは非常に簡単です。これはgemファイルです

gem 'ember-rails'
gem 'ember-source', '1.0.0.rc6.2'
gem 'handlebars-source', '~> 1.0.12'

これは Application.js ファイルです

//= require jquery
//= require jquery_ujs
//= require foundation
//= require handlebars
//= require ember
//= require ember-data
//= require_self
//= require q

これは私が development.rb と production.rb に持っているものです

config.ember.variant = :development
config.ember.variant = :production  

実稼働環境ですべてをローカルでテストしましたが、すべて正常に機能しました。Herokuにプッシュすると、次のエラーが表示され、何が問題なのかわかりません

 -----> Preparing app for Rails asset pipeline
   Running: rake assets:precompile
   rake aborted!
   couldn't find file 'handlebars'
   (in /tmp/build_2ddhwlktd9evz/app/assets/javascripts/application.js:17)

Rails4を使用していることを忘れていました

4

1 に答える 1