Closed lucaskanashiro closed 4 years ago
In Socket.tcp call is passed a keyword parameter as is and while I've been testing a library that relies on it I got the following warning:
net/ldap/connection.rb:709: warning: Using the last argument as keyword parameters is deprecated; maybe ** should be added to the call
In ruby 2.7 is preferred to use ** to pass keyword arguments in method's call.
Thanks but we've got this taken care of now with #342
In Socket.tcp call is passed a keyword parameter as is and while I've been testing a library that relies on it I got the following warning:
net/ldap/connection.rb:709: warning: Using the last argument as keyword parameters is deprecated; maybe ** should be added to the call
In ruby 2.7 is preferred to use ** to pass keyword arguments in method's call.