いくつかのエントリを持つ非常に単純なブログ アプリを作成し、それを heroku にプッシュするだけですが、次のエラーが発生します。
$ heroku db:push [git@github.com:appname/blog.git]
Loaded Taps v0.3.24
Auto-detected local database: postgres://benjaminw@127.0.0.1/blog_development?en
coding=WIN1252
Warning: Data in the app 'afternoon-taiga-2755' will be overwritten and will not
be recoverable.
! WARNING: Destructive Action
! This command will affect the app: afternoon-taiga-2755
! To proceed, type "afternoon-taiga-2755" or re-run this command with --conf
irm afternoon-taiga-2755
> afternoon-taiga-2755
Failed to connect to database:
Sequel::AdapterNotFound -> LoadError: cannot load such file -- pg
しかし、私はpg gemをインストールし、続編のgemをインストールしました。これが私のgemfileです。コメントアウトされているため、いくつかの行を除外しました。誰かがこの問題に遭遇しましたか?
source 'https://rubygems.org'
gem 'rails', '3.2.13'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg'
gem 'activerecord-postgresql-adapter'
gem 'sequel'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'