X7ROOT File Manager
Current Path:
/opt/alt/ruby40/share/gems/gems/json-2.18.0/lib/json/add
opt
/
alt
/
ruby40
/
share
/
gems
/
gems
/
json-2.18.0
/
lib
/
json
/
add
/
??
..
??
bigdecimal.rb
(1.66 KB)
??
complex.rb
(1.3 KB)
??
core.rb
(374 B)
??
date.rb
(1.26 KB)
??
date_time.rb
(1.57 KB)
??
exception.rb
(1.2 KB)
??
ostruct.rb
(1.41 KB)
??
range.rb
(1.43 KB)
??
rational.rb
(1.13 KB)
??
regexp.rb
(1.09 KB)
??
set.rb
(1.09 KB)
??
string.rb
(993 B)
??
struct.rb
(1.39 KB)
??
symbol.rb
(1.12 KB)
??
time.rb
(1.25 KB)
Editing: string.rb
# frozen_string_literal: true unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED require 'json' end class String # call-seq: json_create(o) # # Raw Strings are JSON Objects (the raw bytes are stored in an array for the # key "raw"). The Ruby String can be created by this class method. def self.json_create(object) object["raw"].pack("C*") end # call-seq: to_json_raw_object() # # This method creates a raw object hash, that can be nested into # other data structures and will be generated as a raw string. This # method should be used, if you want to convert raw strings to JSON # instead of UTF-8 strings, e. g. binary data. def to_json_raw_object { JSON.create_id => self.class.name, "raw" => unpack("C*"), } end # call-seq: to_json_raw(*args) # # This method creates a JSON text from the result of a call to # to_json_raw_object of this String. def to_json_raw(...) to_json_raw_object.to_json(...) end end
Upload File
Create Folder