Reputation: 65
I've removed the sqlite3 gem from my gemfile and replaced it with pg, deleted the gemfile.lock and re-bundled, and there are no dependencies in the new gemfile.lock which require sqlite3, so why am I still getting this error?
Upvotes: 0
Views: 109
Reputation: 11
In my case, the issue was that I had sqlite3 in comments within database.yml. After removing those comments, my project was able to get up and running again.
Upvotes: 1