rails to_json と to_yaml  [rails]  [tips]

to_jsonのときはattributesを取り出してjson化してる。
to_yamlのときはオブジェクトそのものをyaml化してる。
なので、
@items.to_json

@items.attributes.to_yaml
が等価

ということかな。