I\'m trying to push my app to heroku but am getting this message.
Gem::LoadError: Specified \'sqlite3\' for database adaptor, but the gem is not loaded.
<
It sounds like you might have either:
forgot to run bundle update
or bundle install
to update your Gemfile.lock
file, or
forgot to commit your Gemfile
and Gemfile.lock
changes to Git with git commit
before pushing to Heroku.
If your problem is the 2nd case, then this question is a duplicate, I just have to find the canonical question around somewhere...