Railsドキュメント

全てのモデルオブジェクトと属性を取得

適応バージョン

説明

全てのモデルオブジェクトと属性を取得

使い方

モデル.attributes()

person = Person.create(name: 'Francesco', age: 22)
person.attributes
# {"id"=>3, "created_at"=>Sun, 21 Oct 2012 04:53:04, "updated_at"=>Sun, 21 Oct 2012 04:53:04, "name"=>"Francesco", "age"=>22}

ソースコード