I've been running into issues with pg in my Rails gem. When I try to..
$ bundle install
..my terminal returns..
An error occurred while installing pg (0.21.0), and Bundler cannot
continue.
Make sure that `gem install pg -v '0.21.0'` succeeds before bundling.
My gemfile includes this:
group :production, :default do
gem 'pg'
end
The exercise I am doing is to deploy my Rails app in Heroku, and it works. The idea is that I do not install postgres locally.
This is my Github repo, if it helps: https://github.com/cyqurayte/Rails1