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
Path
String
Most methods that operate with filesystem paths accept both String and Path, like virtually everything in File.
UNIXSocket.new currently only takes String.
UNIXSocket.new
I assume this is because Path was added later and UNIXSocket wasn't changed to accommodate that. Would there be any problems with allowing Path too?
UNIXSocket
The text was updated successfully, but these errors were encountered:
I don't see any reason why not. If you see any other places, please bring those up too, it'd be nice to get as many as possible at once.
Sorry, something went wrong.
For now I've only encountered UNIXSocket#new and UNIXSocket#open.
UNIXSocket#new
UNIXSocket#open
There's UNIXAddress too.
UNIXAddress
No branches or pull requests
Most methods that operate with filesystem paths accept both
String
andPath
, like virtually everything in File.UNIXSocket.new
currently only takesString
.I assume this is because
Path
was added later andUNIXSocket
wasn't changed to accommodate that. Would there be any problems with allowingPath
too?The text was updated successfully, but these errors were encountered: