I am looking to get the default values for a function with keyword arguments. Example:
def some_method(foo: 1, bar: 2) end My expected output would be something like
{ foo: 1, bar: 2 } The parameters method defined on method only provides parameter names.