bootstrap3のデザインに追加するためにstyle.css
を記述したのですが、それがherokuに反映されなかった。
そこで、調べてみると、
rails assets:precompile RAILS_ENV=production
をコンソール上で打ち込めば解決するとあったが、
Gem::LoadError: Specified 'postgresql' for database adapter, but the gem is not loaded. Add `gem 'pg'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).
Gem::LoadError: pg is not part of the bundle. Add it to your Gemfile.
というエラーが出て5時間ググっても解決できずハマりました。
しかし、1晩寝てから
rails assets:precompile
と「RAILS_ENV=production」を省いてコンソールで打ち込むと無事解決しました^^
追記:heroku上のドロップダウンメニューが表示されない問題が残っていることが判明しました。
やはり、上記のrails assets:precompile RAILS_ENV=production
のエラーを解決する必要があるのかもしれません、、、