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: rational.rb
Close
#frozen_string_literal: false unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED require 'json' end defined?(::Rational) or require 'rational' class Rational # Deserializes JSON string by converting numerator value <tt>n</tt>, # denominator value <tt>d</tt>, to a Rational object. def self.json_create(object) Rational(object['n'], object['d']) end # Returns a hash, that will be turned into a JSON object and represent this # object. def as_json(*) { JSON.create_id => self.class.name, 'n' => numerator, 'd' => denominator, } end # Stores class name (Rational) along with numerator value <tt>n</tt> and denominator value <tt>d</tt> as JSON string def to_json(*) as_json.to_json end end