Byebug fully supports Windows or not?

▼魔方 西西 提交于 2019-12-01 20:20:58

Yes, byebug support Windows.

Rails 5 adds platform: :mri option to byebug gem. (see here)

Windows platforms were probably overlooked when that patch was added.

And this document says mri does not include Windows.

That's right.

I heard some people said that some commands (e.g.restart) did not work in their Windows PC.

Those people should report those issues to the project.

CI tests are passing against Windows environment.(see here)

Thtat's right, the best indicator of support ;)

And I cannot find any limitation on Windows environment in Byebug's README.

Another good indicator :)

gem 'byebug', platform: [:mri, :mingw, :x64_mingw]

byebug is now working on my windows rails app. This is not obvious from the selected answer.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!