Class: JSON::Fragment
Overview
Fragment of JSON document that is to be included as is:
fragment = JSON::Fragment.new("[1, 2, 3]")
JSON.generate({ count: 3, items: fragments })
This allows to easily assemble multiple JSON fragments that have been persisted somewhere without having to parse them nor resorting to string interpolation.
Note: no validation is performed on the provided string. It is the responsibility of the caller to ensure the string contains valid JSON.
Instance Attribute Summary collapse
-
#json ⇒ Object
Returns the value of attribute json.
Instance Method Summary collapse
-
#initialize(json) ⇒ Fragment
constructor
A new instance of Fragment.
- #to_json(state = nil) ⇒ Object
Methods inherited from Struct
Constructor Details
Instance Attribute Details
#json ⇒ Object
Returns the value of attribute json
287 288 289 |
# File 'lib/json/common.rb', line 287 def json @json end |
Instance Method Details
#to_json(state = nil) ⇒ Object
296 297 298 |
# File 'lib/json/common.rb', line 296 def to_json(state = nil, *) json end |