You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see the ruby JSON implementation is used to read the input.
Would it be desired to provide a soft dependency (i.e. not declared in gemspec) on the multi_json gem? This would allow users to supply a more efficient JSON parser for their ruby engine. On MRI that is likely Oj, on JRuby that is likely jrjackson.
The required work is pretty minimal:
Test for multi_json dependency on LOAD_PATH.
If present, parse JSON-LD with MultiJson.load.
If not, fall back to JSON module.
The text was updated successfully, but these errors were encountered:
I see the ruby
JSON
implementation is used to read the input.Would it be desired to provide a soft dependency (i.e. not declared in gemspec) on the multi_json gem? This would allow users to supply a more efficient JSON parser for their ruby engine. On MRI that is likely Oj, on JRuby that is likely jrjackson.
The required work is pretty minimal:
MultiJson.load
.JSON
module.The text was updated successfully, but these errors were encountered: