我创建了一个新的 Rails 应用程序,然后我运行了bundle
,并且捆绑包成功完成。然后我修改了 byebug 条目
gem 'byebug', platform: :mri
至
gem 'byebug', platform: [:mri, :mingw, :x64_mingw]
使其适用于 Windows。
然后,我又跑bundle
了,我得到了RuntimeError: Unable to find a spec satisfying byebug (>= 0) in the set. Perhaps the lockfile is corrupted?
为什么会发生这种情况,我该如何解决(不撤消 Gemfile 修改)?