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. <
Gem::LoadError: Specified \'sqlite3\' for database adaptor, but the gem is not loaded.
I had to specify my sqlite3 version as 1.3.13:
gem 'sqlite3', '~> 1.3.13'
Then run bundle update.
bundle update