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

Defined in:
lib/fiveruns/json/generator.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.



355
356
357
# File 'lib/fiveruns/json/generator.rb', line 355

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

Instance Method Details

#to_fjsonObject

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



340
341
342
# File 'lib/fiveruns/json/generator.rb', line 340

def to_fjson(*)
  '"' << ::Fiveruns::JSON.utf8_to_json(self) << '"'
end

#to_fjson_raw(*args) ⇒ Object

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



372
373
374
# File 'lib/fiveruns/json/generator.rb', line 372

def to_fjson_raw(*args)
  to_fjson_raw_object.to_fjson(*args)
end

#to_fjson_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 FiverunsJSON instead of UTF-8 strings, e. g. binary data.



363
364
365
366
367
368
# File 'lib/fiveruns/json/generator.rb', line 363

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