I think updating all Gemfile.lock is dangerous, especially when you have a lot of gems without specific versions. Sometimes, when you update a pearl, some behavior changes, and it is very difficult to understand why this happened.
I had the same problem for me, and the solution was to modify the Gemfile:
gem 'rake', "~> 10.2.2"
to
gem 'rake', "~> 11.1.2"
and then run
bundle update rake
source share