Depends on how the args keywords are defined.
If they are defined for any reason, pass them inline:
SomeClass.send(:some_method, {keyword_arg1: 'foo', keyword_arg2: 'bar'})
If they are defined in the hash, you can unpack it:
hash = {keyword_arg1: 'baz', keyword_arg2: 'bing'} SomeClass.send(:some_method, **hash)
source share