RailsCasts Pro episodes are now free!

Learn more or hide this

Michael Kohl's Profile

GitHub User: citizen428

Site: http://citizen428.net

Comments by Michael Kohl

Avatar

The y method should still be there if you require 'yaml' first.

ruby
>> RUBY_VERSION
=> "1.9.3"
>> require 'yaml'
=> true
>> y({ "foo" => "bar" })
---
foo: bar
=> nil