Sha256: 2208f45eb6b16ce78f78880b0c90cd2bd5ec66db8c71a005704a63775cc5589a

Contents?: true

Size: 694 Bytes

Versions: 60

Compression:

Stored size: 694 Bytes

Contents

# 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

%w(lib ext test).each do |dir|
  $LOAD_PATH.unshift File.expand_path("../../#{dir}", __FILE__)
end

require 'minitest'
require 'minitest/autorun'
require 'stringio'
require 'date'
require 'bigdecimal'
require 'pp'
require 'oj'

$ruby = RUBY_DESCRIPTION.split(' ')[0]
$ruby = 'ree' if 'ruby' == $ruby && RUBY_DESCRIPTION.include?('Ruby Enterprise Edition')

class Range
  def to_hash()
    { 'begin' => self.begin, 'end' => self.end, 'exclude_end' => self.exclude_end? }
  end
end

Version data entries

60 entries across 60 versions & 2 rubygems

Version Path
oj-3.11.0 test/helper.rb
oj-3.10.18 test/helper.rb
oj-3.10.17 test/helper.rb
oj-3.10.16 test/helper.rb
oj-3.10.15 test/helper.rb
oj-3.10.14 test/helper.rb
oj-3.10.13 test/helper.rb
oj-3.10.12 test/helper.rb
oj-3.10.11 test/helper.rb
oj-3.10.10 test/helper.rb
oj-3.10.9 test/helper.rb
oj-3.10.8 test/helper.rb
oj-3.10.7 test/helper.rb
oj-3.10.6 test/helper.rb
oj-3.10.5 test/helper.rb
oj-3.10.3 test/helper.rb
oj-3.10.2 test/helper.rb
oj-3.10.1 test/helper.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/oj-3.10.0/test/helper.rb
oj-3.10.0 test/helper.rb