Sha256: baa2dd31757e6ef0679139de49bb786849b5ec19324b15f8e10d8ea1776c637a

Contents?: true

Size: 413 Bytes

Versions: 12

Compression:

Stored size: 413 Bytes

Contents

#!/usr/bin/env ruby
# encoding: UTF-8

# Ubuntu does not accept arguments to ruby when called using env. To get warnings to show up the -w options is
# required. That can be set in the RUBYOPT environment variable.
# export RUBYOPT=-w

$VERBOSE = true

$: << File.join(File.dirname(__FILE__), "../lib")
$: << File.join(File.dirname(__FILE__), "../ext")

require 'oj'

Oj.load_file('josh2.json', :mode => :strict)

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
oj-2.4.1 test/bug.rb
oj-2.4.0 test/bug.rb
oj-2.3.0 test/bug.rb
oj-2.2.3 test/bug.rb
oj-2.2.2 test/bug.rb
oj-2.2.1 test/bug.rb
oj-2.2.0 test/bug.rb
oj-2.1.7 test/bug.rb
oj-2.1.6 test/bug.rb
oj-2.1.4 test/bug.rb
oj-2.1.2 test/bug.rb
oj-2.1.1 test/bug.rb