RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: citizen428
Site: http://citizen428.net
The y method should still be there if you require 'yaml' first.
y
require 'yaml'
>> RUBY_VERSION => "1.9.3" >> require 'yaml' => true >> y({ "foo" => "bar" }) --- foo: bar => nil
The
y
method should still be there if yourequire 'yaml'
first.