OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
ruby
/
2.5.0
/
json
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:11 AM
rwxr-xr-x
📁
add
-
05/09/2024 07:14:11 AM
rwxr-xr-x
📄
common.rb
14.98 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
ext.rb
391 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
generic_object.rb
1.39 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
version.rb
302 bytes
05/15/2023 11:41:43 AM
rw-r--r--
Editing: ext.rb
Close
require 'json/common' module JSON # This module holds all the modules/classes that implement JSON's # functionality as C extensions. module Ext require 'json/ext/parser' require 'json/ext/generator' $DEBUG and warn "Using Ext extension for JSON." JSON.parser = Parser JSON.generator = Generator end JSON_LOADED = true unless defined?(::JSON::JSON_LOADED) end