Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Gemfile に次のものがありますが、ローカルで bundle install を実行すると、postgres が利用できないというエラーが表示されます。
group :development do gem 'dm-sqlite-adapter' end group :production do gem 'dm-postgres-adapter' end
プロダクション グループを除外するように Bundler に指示する必要があります。
bundle install --without production
これは、同じマシンでの将来の実行のために記憶されます (これはディレクトリ.bundleに保存されます) 。bundlebundle install
.bundle
bundle
bundle install