I installed postgres using homebrew and it worked fine - but now rspec won't run my tests and is throwing this error:
Could not find pg-0.16.0 in any of the sources (Bundler::GemNotFound)
the relevant part of my 'gemfile'
group :production do
gem 'pg'
end
group :development, :test do
gem 'sqlite3'
end
Obviously I want to get this working, but to be honest I'm more confused by why this is throwing an error in the first place. Rspec is in my test/development environment, and postgres is only in production - so why does Rspec care (or even know!) about postgres?