Module: PSON::Pure::Generator::GeneratorMethods::String
- Defined in:
- lib/vendor/puppet/external/pson/pure/generator.rb
Defined Under Namespace
Modules: Extend
Class Method Summary collapse
-
.included(modul) ⇒ Object
Extends modul with the String::Extend module.
Instance Method Summary collapse
-
#to_pson ⇒ Object
This string should be encoded with UTF-8 A call to this method returns a PSON string encoded with UTF16 big endian characters as u????.
-
#to_pson_raw(*args) ⇒ Object
This method creates a PSON text from the result of a call to to_pson_raw_object of this String.
-
#to_pson_raw_object ⇒ Object
This method creates a raw object hash, that can be nested into other data structures and will be unparsed as a raw string.
Class Method Details
Instance Method Details
#to_pson ⇒ Object
This string should be encoded with UTF-8 A call to this method returns a PSON string encoded with UTF16 big endian characters as u????.
347 348 349 |
# File 'lib/vendor/puppet/external/pson/pure/generator.rb', line 347 def to_pson(*) '"' << PSON.utf8_to_pson(self) << '"' end |
#to_pson_raw(*args) ⇒ Object
This method creates a PSON text from the result of a call to to_pson_raw_object of this String.
379 380 381 |
# File 'lib/vendor/puppet/external/pson/pure/generator.rb', line 379 def to_pson_raw(*args) to_pson_raw_object.to_pson(*args) end |
#to_pson_raw_object ⇒ Object
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 PSON instead of UTF-8 strings, e. g. binary data.
370 371 372 373 374 375 |
# File 'lib/vendor/puppet/external/pson/pure/generator.rb', line 370 def to_pson_raw_object { PSON.create_id => self.class.name, 'raw' => self.unpack('C*'), } end |