Tag Archives: heroku

How to tell which ruby version your Heroku app is using

Type the following:

`gem install activerecord-postgresql-adapter` (pg is not part of the bundle. Add it to Gemfile.) (LoadError)

If you see this error in your heroku logs “`gem install activerecord-postgresql-adapter` (pg is not part of the bundle. Add it to Gemfile.” Then you must add this to your production section of your Gemfile or create it if you don’t have one:

Error installing heroku gem

My goal is to push my rails app to Heroku. However, I wasn’t able to install the heroku gem. If you get the following error when trying to do a gem install herokuĀ –no-rdoc –no-ri After researching online there were two things that could potentially be the problem. The first is that there is that my […]