mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
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
8 lines
109 B
Ruby
8 lines
109 B
Ruby
module JSON
|
|
module_function
|
|
|
|
def parse(source, opts = {})
|
|
Parser.new(source, **opts).parse
|
|
end
|
|
end
|