Right now `YAML.write_file` will represent an array `[1, 2, 3]` as ```yaml field: - 1 - 2 - 3 ``` It would be great to be able to use a more compact representation ```yaml field: [1, 2, 3] ```