We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8fa61d commit 8a646fbCopy full SHA for 8a646fb
bin/j2bson
@@ -29,10 +29,11 @@ require 'bson'
29
# Note that, at the moment, this will not properly round-trip
30
# in all cases from the output generated by b2json.
31
begin
32
-require 'yajl/json_gem' # broken with 'json/ext'
+require 'json/pure' # broken with 'json/ext'
33
rescue LoadError
34
- puts "This script requires yajl. Please install the following:"
35
- puts " gem install yajl"
+ puts "This script requires json/pure. Please install one of the following:"
+ puts " gem install json_pure"
36
+ puts " gem install json"
37
Process.exit
38
end
39
0 commit comments