Files
Luis Ramos 21b80db0ee Fix json v1.8.6 common.rb warning
Using this patch https://github.com/flori/json/issues/399#issuecomment-734863279

We can upgrade to json v2 but to do that we need to switch from aws-sdk-v1 to aws-sdk-s3 first
2021-06-04 22:42:27 +01:00

8 lines
109 B
Ruby

module JSON
module_function
def parse(source, opts = {})
Parser.new(source, **opts).parse
end
end