Skip to content

Instantly share code, notes, and snippets.

@tenderlove
Created October 14, 2011 13:14
Show Gist options
  • Save tenderlove/1287056 to your computer and use it in GitHub Desktop.
Save tenderlove/1287056 to your computer and use it in GitHub Desktop.
require 'psych'
class MyEmitter < Psych::Visitors::Emitter
end
o = "hello world"
visitor = Psych::Visitors::YAMLTree.new {}
visitor << o
my_emitter = MyEmitter.new $stdout
my_emitter.accept visitor.tree
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment