ぬけラボ

φ(..)メモメモ

2012-12-03から1日間の記事一覧

Ruby json/messagepack

Ruby193 json/messagepackメモ 一度シリアライズするとkeyがStringになる json require 'json' def hashtojson {"hoge" => 1, :fuga => 2}.to_json end def jsontohash(arg) JSON.parse(arg) end puts jsontohash(hashtojson) #=> {"hoge" => 1, "fuga" => 2…