Ruby 1.9.2 リファレンスマニュアル > ライブラリ一覧 > library yaml/store
library yaml/store
要約
RubyのオブジェクトをYAML形式の外部ファイルに格納するためのクラスです。
require "yaml/store" db = YAML::Store.new("sample.yml") db.transaction do db["hoge"] = {1 => 100, "bar" => 101} end
クラスとモジュール
class YAML::Store | PStore の YAML 版です。 Marshal.#dump したバイナリ形式の 代わりに YAML 形式でファイルに保存します。 |