我使用自制软件安装了postgres并且工作正常 - 但是现在rspec将无法运行我的测试并且抛出了这个错误:
Could not find pg-0.16.0 in any of the sources (Bundler::GemNotFound)
我的'gemfile'的相关部分
group :production do
gem 'pg'
end
group :development, :test do
gem 'sqlite3'
end
显然我想让这个工作,但说实话,我更加困惑的是为什么这首先抛出一个错误。 Rspec在我的测试/开发环境中,而postgres只在生产中 - 所以为什么Rspec关心postgres(甚至知道!)?
答案 0 :(得分:1)