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: symbol.rb
Close
#frozen_string_literal: false unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED require 'json' end class Symbol # Returns a hash, that will be turned into a JSON object and represent this # object. def as_json(*) { JSON.create_id => self.class.name, 's' => to_s, } end # Stores class name (Symbol) with String representation of Symbol as a JSON string. def to_json(*a) as_json.to_json(*a) end # Deserializes JSON string by converting the <tt>string</tt> value stored in the object to a Symbol def self.json_create(o) o['s'].to_sym end end