module YAML
Overview
The YAML module provides serialization and deserialization of YAML to/from native Crystal data structures.
Parsing with #parse and #parse_all
YAML#parse will return an Any, which is a convenient wrapper around all possible YAML types,
making it easy to traverse a complex YAML structure but requires some casts from time to time,
mostly via some method invocations.
require "yaml"
data = YAML.parse <<-END
         ---
         foo:
           bar:
             baz:
               - qux
               - fox
         END
data["foo"]["bar"]["baz"][1].as_s # => "qux"Parsing with YAML#mapping
YAML#mapping defines how an object is mapped to YAML. Mapped data is accessible
through generated properties like Foo#bar. It is more type-safe and efficient.
Dumping with YAML.dump or #to_yaml
YAML.dump generates the YAML representation for an object. An IO can be passed and it will be written there,
otherwise it will be returned as a string. Similarly, #to_yaml (with or without an IO) on any object does the same.
yaml = YAML.dump({hello: "world"})                                # => "--- \nhello: world"
File.open("file.yml", "w") { |f| YAML.dump({hello: "world"}, f) } # => writes it to the file
# or:
yaml = {hello: "world"}.to_yaml                                # => "--- \nhello: world"
File.open("file.yml", "w") { |f| {hello: "world"}.to_yaml(f) } # => writes it to the fileDefined in:
yaml/any.cryaml/mapping.cr
yaml.cr
Class Method Summary
- 
        .dump(object, io : IO)
        
          Serializes an object to YAML, writing it to io.
- 
        .dump(object) : String
        
          Serializes an object to YAML, returning it as a string. 
- 
        .parse(data : String | IO) : Any
        
          Deserializes a YAML document. 
- 
        .parse_all(data : String) : Array(Any)
        
          Deserializes multiple YAML documents. 
Macro Summary
- 
        mapping
        
          This is a convenience method to allow invoking YAML.mappingwith named arguments instead of with a hash/named-tuple literal.
- 
        mapping(properties, strict = false)
        
          The YAML.mappingmacro defines how an object is mapped to YAML.
Class Method Detail
Serializes an object to YAML, returning it as a string.
Deserializes a YAML document.
# ./foo.yml
data:
  string: "foobar"
  array:
    - John
    - Sarah
  hash: {key: value}
  paragraph: |
    foo
    barrequire "yaml"
YAML.parse(File.read("./foo.yml"))
# => {
# => "data" => {
# => "string" => "foobar",
# => "array" => ["John", "Sarah"],
# => "hash" => {"key" => "value"},
# => "paragraph" => "foo\nbar\n"
# => }Deserializes multiple YAML documents.
# ./foo.yml
foo: bar
---
hello: worldrequire "yaml"
YAML.parse_all(File.read("./foo.yml"))
# => [{"foo" => "bar"}, {"hello" => "world"}]Macro Detail
This is a convenience method to allow invoking YAML.mapping
with named arguments instead of with a hash/named-tuple literal.
The YAML.mapping macro defines how an object is mapped to YAML.
It takes named arguments, a named tuple literal or a hash literal as argument,
in which attributes and types are defined.
Once defined, Object#from_yaml populates properties of the class from the
YAML document.
require "yaml"
class Employee
  YAML.mapping(
    title: String,
    name: String,
  )
end
employee = Employee.from_yaml("title: Manager\nname: John")
employee.title # => "Manager"
employee.name  # => "John"
employee.name = "Jenny"
employee.name # => "Jenny"Attributes not mapped with YAML.mapping are not defined as properties.
Also, missing attributes raise a ParseException.
employee = Employee.from_yaml("title: Manager\nname: John\nage: 30")
employee.age # => undefined method 'age'.
employee = Employee.from_yaml("title: Manager")
# => ParseException: missing yaml attribute: nameYou can also define attributes for each property.
class Employee
  YAML.mapping(
    title: String,
    name: {
      type:    String,
      nilable: true,
      key:     "firstname",
    },
  )
endAvailable attributes:
- type (required) defines its type. In the example above, title: String is a shortcut to title: {type: String}.
- nilable defines if a property can be a Nil. PassingT | Nilas a type has the same effect.
- default: value to use if the property is missing in the YAML document, or if it's nullandnilablewas not set totrue. If the default value creates a new instance of an object (for example[1, 2, 3]orSomeObject.new), a different instance will be used each time a YAML document is parsed.
- key defines which key to read from a YAML document. It defaults to the name of the property.
- converter takes an alternate type for parsing. It requires a #from_yamlmethod in that class, and returns an instance of the given type. Examples of converters areTime::FormatandTime::EpochConverterforTime.
The mapping also automatically defines Crystal properties (getters and setters) for each of the keys. It doesn't define a constructor accepting those arguments, but you can provide an overload.
The macro basically defines a constructor accepting a YAML::PullParser that reads from
it and initializes this type's instance variables.
This macro also declares instance variables of the types given in the mapping.