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: bigdecimal.rb
Close
#frozen_string_literal: false unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED require 'json' end defined?(::BigDecimal) or require 'bigdecimal' class BigDecimal # Import a JSON Marshalled object. # # method used for JSON marshalling support. def self.json_create(object) BigDecimal._load object['b'] end # Marshal the object to JSON. # # method used for JSON marshalling support. def as_json(*) { JSON.create_id => self.class.name, 'b' => _dump, } end # return the JSON value def to_json(*) as_json.to_json end end