yajl-ruby
yajl-ruby copied to clipboard
JSON gem compatibility doesn't object_class
I wanted to test this in our app, but I saw some sorbet errors:
TypeError:
T.let: Expected type OpenStruct, got type Hash with value {"..."=>"..."}
Caller: some_ruby.rb:71
The code in question:
PRICE = T.let(
JSON.parse("....", object_class: OpenStruct)
)
This tells me that object_class isn't supported in yajl-ruby. I am pretty sure I can remove the usage of these because they are weird, but I figure I would still submit in case anyone else runs into it.