can't find gem bundler (>= 0.a) with executable bundle (Gem::GemNotFoundException)
rails s
や bundle exec ...
などで怒られた
can't find gem bundler (>= 0.a) with executable bundle (Gem::GemNotFoundException)
原因
bundler のバージョンがGemfile.lockと違うことが問題だった
~~~~ BUNDLED WITH 2.0.1
$ bundler -v => Bundler version 1.3.0
対応
必要なバージョンのbundlerをインストールする
$ gem install bundler -v 2.0.1
ヤッタネ!