Constructing a serialised YAML string in Ruby

Sometimes you want to convert a YAML document to an encoded format that can then i.e. be base64-encoded, or stored in another form.

I fought against this the other day and it took me a bit of work to work out that we can write the following CLI Ruby incantation to give us what we need:

ruby -ryaml -e 'p YAML.load(ARGF.read).to_yaml' < a.yml
# outputs:
# "---\ninfo:\n  version: 1.2.3\n"

Written by Jamie Tanna's profile image Jamie Tanna on , and last updated on .

Content for this article is shared under the terms of the Creative Commons Attribution Non Commercial Share Alike 4.0 International, and code is shared under the Apache License 2.0.

#blogumentation #command-line #ruby #yaml.

Also on:

This post was filed under articles.

Interactions with this post

Interactions with this post

Below you can find the interactions that this page has had using WebMention.

Have you written a response to this post? Let me know the URL:

Do you not have a website set up with WebMention capabilities? You can use Comment Parade.