我的Gemfile中有以下内容,但是当我在本地运行bundle install时,我收到有关postgres不可用的错误。
group :development do
gem 'dm-sqlite-adapter'
end
group :production do
gem 'dm-postgres-adapter'
end
答案 0 :(得分:1)
您需要告诉Bundler排除生产组:
bundle install --without production
它会记住以后在同一台机器上运行(它将它存储在.bundle
目录中),因此您只需要执行一次,然后只需执行bundle
或{{1将来。