From: Ola Bini Date: 2006-06-07T20:57:28+09:00 Subject: Re: [SOLUTION] Hash to OpenStruct (#81) At 13:53 2006-06-07, you wrote: > > because the 'y' will be translated to a boolean true, per the YAML spec, > >I'm pretty sure that implict conversion only occurs for values not >keys. > >T. Not correct: irb(main):002:0> YAML.load("a: b\nyes: false\n") {"a"=>"b", true=>false} /O