mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
17 lines
247 B
Ruby
17 lines
247 B
Ruby
case ENV['JSON']
|
|
when 'pure'
|
|
$:.unshift 'lib'
|
|
require 'json/pure'
|
|
when 'ext'
|
|
$:.unshift 'ext', 'lib'
|
|
require 'json/ext'
|
|
else
|
|
$:.unshift 'ext', 'lib'
|
|
require 'json'
|
|
end
|
|
|
|
require 'test/unit'
|
|
begin
|
|
require 'byebug'
|
|
rescue LoadError
|
|
end
|