2023年12月6日水曜日

bundler の with と without オプションは非推奨になっていた

bundler の with と without オプションは非推奨になっていた

概要

推奨方法を紹介します
結論としては環境変数を使いましょう

環境

  • macOS 11.7.10
  • Ruby 3.2.2
  • bundler 2.3.7

今まで

  • bundle install --with development
  • bundle install --without development

これから

  • bundle config set with '' && bundle config set without 'development' && bundle install
  • bundle config set without '' && bundle config set with 'development' && bundle install

環境変数を使うことはできなさそう

BUNDLE_WITHOUT or BUNDLER_WITHOUT を設定すればいけるという記事を何個か見たのですがうまく動作しませんでした

もし BUNDLE_WITHOUT を使いたい場合は結局 bundle config set しないといけないので上記と同じ手順を踏むことになりそうです

最後に

なんか劣化したような気がします

参考サイト

0 件のコメント:

コメントを投稿