Merge branch 'hotfix/3.7.5' into develop

This commit is contained in:
Karol Sójko
2021-06-04 10:15:09 +02:00

View File

@@ -0,0 +1,9 @@
# fix for JSON deprecation warnings. See: https://github.com/flori/json/issues/399#issuecomment-734863279
module JSON
module_function
def parse(source, opts = {})
Parser.new(source, **opts).parse
end
end