You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 13, 2021. It is now read-only.
I used Quacky to test a method in ruby 2.0 that takes keyword arguments, and noticed that it did not enforce the keyword argument names. In other words, this:
def foo(a: nil, b: nil); end
quacks like this, according to quacky:
def foo(completely_different_argument_name: nil, b: nil); end