Closed aovertus closed 2 years ago
Found the current issue while upgrade our project. to ruby3
3.0.2 :006 > Class.test(zpl: 'test') 108: def self.test(*args) 109: args => 110: end => [{:zpl=>"test"}] => Return an array 3.0.2 :008 > Class.test(zpl: 'test') 108: def self.test(**args) 109: args => 110: end => {:zpl=>"test"} => Return a hash
@rjocoleman
Found the current issue while upgrade our project. to ruby3
@rjocoleman