CircleCI で You must use Bundler 2 or greater with this lockfile と言われた場合の対処

Published: 2019/2/21


Circleci の ruby の image で、 You must use Bundler 2 or greater with this lockfile. とエラーがでた。

解決方法としては:

  1. BUNDLER_VERSION を存在する 2.0.0 以上のバージョンに指定する
  2. gem install bundler -v $BUNDLER_VERSION を steps の最初の方に実行する

Tags: rubybundlercircleci

関連記事