Module: PSON::Pure::Generator::GeneratorMethods::String::Extend

Defined in:
lib/puppet/external/pson/pure/generator.rb

Overview

Module that holds the extending methods if, the String module is included.

Instance Method Summary collapse

Instance Method Details

#pson_create(o) ⇒ Object

Raw Strings are PSON Objects (the raw bytes are stored in an array for the key “raw”). The Ruby String can be created by this module method.



349
350
351
# File 'lib/puppet/external/pson/pure/generator.rb', line 349

def pson_create(o)
  o['raw'].pack('C*')
end