Sha256: e7c89db6541326aa5710616d913e5cba6f5f893351491ec20c3a0d92795a63fb
Contents?: true
Size: 283 Bytes
Versions: 39
Compression:
Stored size: 283 Bytes
Contents
#!/usr/bin/env ruby # encoding: UTF-8 %w(lib ext test).each do |dir| $LOAD_PATH.unshift File.expand_path("../../#{dir}", __FILE__) end require 'oj' Thread.new do string_io = StringIO.new('{"foo":"bar"}') Oj.load(string_io) string_io.rewind puts string_io.read end.join
Version data entries
39 entries across 39 versions & 1 rubygems