Scss在rails Heroku生产中工作,但在临时版本中不工作

Scss在rails Heroku生产中工作,但在临时版本中不工作,heroku,ruby-on-rails-3.2,sass,production,staging,Heroku,Ruby On Rails 3.2,Sass,Production,Staging,我在Heroku上有一个运行良好的rails应用程序(包括scss)。 但是,当我试图通过将environment/production.rb的副本设置为environment/staging.rb来设置Heroku登台版本时 并使用以下命令: $ heroku create --remote staging $ heroku config:add RACK_ENV=staging RAILS_ENV=staging --remote staging $ git push staging ma

我在Heroku上有一个运行良好的rails应用程序(包括scss)。 但是,当我试图通过将environment/production.rb的副本设置为environment/staging.rb来设置Heroku登台版本时 并使用以下命令:

$ heroku create --remote staging
$ heroku config:add RACK_ENV=staging RAILS_ENV=staging --remote staging

$ git push staging master
$ heroku run rake db:migrate --remote staging
$ heroku open --remote staging
heroku上的登台应用程序运行,但没有所有SCS/css

为什么SCS在生产中工作,而不是在分段中工作?? 我以为我明白问题是什么,但现在我意识到我不明白。 我需要修理什么