Module: JsonToToon
- Defined in:
- lib/json-to-toon.rb,
lib/json_to_toon/errors.rb,
lib/json_to_toon/version.rb,
lib/json_to_toon/converter.rb,
lib/json_to_toon/data_node.rb,
lib/json_to_toon/array_node.rb,
lib/json_to_toon/value_node.rb,
lib/json_to_toon/object_node.rb,
lib/json_to_toon/node_builder.rb,
lib/json_to_toon/container_node.rb
Defined Under Namespace
Classes: ArrayNode, ContainerNode, ConversionError, Converter, DataNode, Error, NodeBuilder, ObjectNode, ValueNode
Constant Summary collapse
- VERSION =
'0.1.0'
Class Method Summary collapse
Class Method Details
.convert(json_string) ⇒ Object
7 8 9 |
# File 'lib/json-to-toon.rb', line 7 def self.convert(json_string) Converter.convert(json_string) end |