LoginSignup
0

More than 5 years have passed since last update.

Bundler::Dsl::YAMLが出て、bundle installができなくなった場合の対処法

Posted at

redmine環境をruby2.0,rails4.0に更新したら以下のエラーが出て、bundle installが通らなくなった。

uninitialized constant Bundler::Dsl::YAML (NameError)

色々調べた結果以下の方法で解決
Gemfileに以下の一行を追加

require 'yaml'

そして、bundle install

Your bundle is complete!

これだけにどれだけなやんだことか

参考

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0