るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.046秒)
トップページ > クエリ:new[x] > クエリ:yaml[x] > クエリ:yaml_tag[x]

別のキーワード

  1. psych to_yaml
  2. yaml/dbm select
  3. yaml/store new
  4. yaml yaml
  5. psych yaml_tag

ライブラリ

クラス

検索結果

Object.yaml_tag(tag) -> () (24232.0)

クラスと tag の間を関連付けます。

...クラスと tag の間を関連付けます。

これによって tag 付けされた YAML ドキュメントを Ruby のオブジェクトに
変換したりその逆をしたりすることができます。

@param tag 対象のクラスに関連付けるタグの文字列

=== Example
requir...
...new(3))
# =>
# --- !ruby/object:Foo
# x: 3

# Registers tag with class Foo
Foo.yaml_as("tag:example.com,2013:foo")
# ... and dumps the object of Foo class
Psych.dump(Foo.new(3), STDOUT)
# =>
# --- !<tag:example.com,2013:foo>
# x: 3

# Loads the object from the tagged YAML...