Module: JSON::Pure::Generator::GeneratorMethods::String::Extend
- Defined in:
- lib/vendor/json_pure/lib/json/pure/generator.rb
Overview
Module that holds the extinding methods if, the String module is included.
Instance Method Summary collapse
-
#json_create(o) ⇒ Object
Raw Strings are JSON Objects (the raw bytes are stored in an array for the key “raw”).
Instance Method Details
#json_create(o) ⇒ Object
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 module method.
407 408 409 |
# File 'lib/vendor/json_pure/lib/json/pure/generator.rb', line 407 def json_create(o) o['raw'].pack('C*') end |