I've created a new Rails application, then I ran bundle
, and the bundle completed successfully. Then I modified the byebug entry from
gem 'byebug', platform: :mri
to
gem 'byebug', platform: [:mri, :mingw, :x64_mingw]
so that it works with Windows.
Then, I ran bundle
again and I'm getting RuntimeError: Unable to find a spec satisfying byebug (>= 0) in the set. Perhaps the lockfile is corrupted?
Why does this happen and how can I solve it (not undoing the Gemfile modification)?