Ruby
概要 [#p6fa2c2d]
bundle installで Your Gemfile.lock is corrupt. と表示される場合の対処方法の一つです。
対処方法 [#hd002fe5]
bundle install を実行した際に
Warning: the running version of Bundler is older than the version that created the lockfile. We suggest you upgrade to the latest version of Bundler by running `gem install bundler`.
と表示される場合は、記載されている通りに、
gem install bundler
とすることで、bundlerが更新されて解決する可能性があります。