I\'m trying to push my rails app to Heroku, and I keep getting the following error:
An error occurred while installing sqlite3 (1.3.8), and Bundler ca
You have a typo:
group :development, :test do # <<<< :development, not devlopment gem 'sqlite3' end
As heroku ignores development specific gems, when running the bundle it includes sqlite3 gem.