OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
ruby
/
2.5.0
/
json
/
add
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:11 AM
rwxr-xr-x
📄
bigdecimal.rb
598 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
complex.rb
749 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
core.rb
348 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
date.rb
881 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
date_time.rb
1.3 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
exception.rb
799 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
ostruct.rb
797 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
range.rb
786 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
rational.rb
780 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
regexp.rb
760 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
struct.rb
786 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
symbol.rb
614 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
time.rb
1016 bytes
05/15/2023 11:41:43 AM
rw-r--r--
Editing: struct.rb
Close
#frozen_string_literal: false unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED require 'json' end class Struct # Deserializes JSON string by constructing new Struct object with values # <tt>v</tt> serialized by <tt>to_json</tt>. def self.json_create(object) new(*object['v']) end # Returns a hash, that will be turned into a JSON object and represent this # object. def as_json(*) klass = self.class.name klass.to_s.empty? and raise JSON::JSONError, "Only named structs are supported!" { JSON.create_id => klass, 'v' => values, } end # Stores class name (Struct) with Struct values <tt>v</tt> as a JSON string. # Only named structs are supported. def to_json(*args) as_json.to_json(*args) end end