Module: JSON::Pure::Generator::GeneratorMethods::String

Defined in:
lib/ghi/json.rb

Defined Under Namespace

Modules: Extend

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(modul) ⇒ Object

Extends modul with the String::Extend module.



794
795
796
# File 'lib/ghi/json.rb', line 794

def self.included(modul)
  modul.extend Extend
end

Instance Method Details

#to_json(state = nil, *args) ⇒ Object

This string should be encoded with UTF-8 A call to this method returns a JSON string encoded with UTF16 big endian characters as u????.



755
756
757
758
759
760
761
762
763
764
765
766
767
# File 'lib/ghi/json.rb', line 755

def to_json(state = nil, *args)
  state = State.from_state(state)
  if encoding == ::Encoding::UTF_8
    string = self
  else
    string = encode(::Encoding::UTF_8)
  end
  if state.ascii_only?
    '"' << JSON.utf8_to_json_ascii(string) << '"'
  else
    '"' << JSON.utf8_to_json(string) << '"'
  end
end

#to_json_raw(*args) ⇒ Object

This method creates a JSON text from the result of a call to to_json_raw_object of this String.



811
812
813
# File 'lib/ghi/json.rb', line 811

def to_json_raw(*args)
  to_json_raw_object.to_json(*args)
end

#to_json_raw_objectObject

This method creates a raw object hash, that can be nested into other data structures and will be unparsed 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.



802
803
804
805
806
807
# File 'lib/ghi/json.rb', line 802

def to_json_raw_object
  {
    JSON.create_id  => self.class.name,
    'raw'           => self.unpack('C*'),
  }
end