Created
July 29, 2011 17:21
-
-
Save tenderlove/1114256 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'psych' | |
list = ('a'..'z').to_a | |
# Create a YAML AST | |
viz = Psych::Visitors::YAMLTree.new {} | |
viz << list | |
tree = viz.tree | |
# Change the Sequence node to be FLOW style | |
tree.children.first.children.first.style = Psych::Nodes::Sequence::FLOW | |
# Output as YAML | |
puts tree.to_yaml | |
# Or just use JSON style (it defaults to flow) | |
puts Psych.to_json list |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment