github.com/crystal-lang/yaml_mapping.cr
0.1.1 / published Apr 10, 2021 / repository
Provides the legacy `YAML.mapping` macro method
yaml_mapping
Provides the legacy YAML.mapping macro method.
This shard is provided as-is and considered deprecated. It won't receive feature enhancements.
Please consider using YAML::Serializable instead, the successor included in Crystal's standard library.
Installation
-
Add the dependency to your
shard.yml:dependencies: yaml_mapping: github: crystal-lang/yaml_mapping.cr -
Run
shards install
Usage
require "yaml_mapping"
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"
Contributing
- Fork it (https://github.com/crystal-lang/yaml_mapping.cr/fork)
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request
API
- YAML
The YAML module provides serialization and deserialization of YAML version 1.1 to/from native Crystal data structures, with the additional independent types specified in http://yaml.org/type/