We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to migrate unix_utils to windows. All the needed command are provided by cygwin. But there are some problem needed to handle.
unix_utils
Firstly, IO#readpartial doesn't work on windows with jruby. It reports: readpartial only works with Nio based handlers.
IO#readpartial
readpartial only works with Nio based handlers
Can we use IO#readline instead of IO#readpartial when running on windows?
IO#readline
The text was updated successfully, but these errors were encountered:
sure, give it a try (and why IO#readline and not IO#gets?)
IO#gets
thank you @towerhe for your excellent work!
Sorry, something went wrong.
No branches or pull requests
I'm trying to migrate
unix_utils
to windows. All the needed command are provided by cygwin. But there are some problem needed to handle.Firstly,
IO#readpartial
doesn't work on windows with jruby. It reports:readpartial only works with Nio based handlers
.Can we use
IO#readline
instead ofIO#readpartial
when running on windows?The text was updated successfully, but these errors were encountered: