るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.030秒)
トップページ > クエリ:rect[x] > クエリ:start_document[x] > クラス:Psych::Nodes::Document[x]

別のキーワード

  1. smtp start
  2. net/smtp start
  3. pop3 start
  4. http start
  5. pop start

ライブラリ

検索結果

Psych::Nodes::Document.new(version=[], tag_directives=[], implicit=false) -> Psych::Nodes::Document (107.0)

Document オブジェクトを生成します。

...

version にはドキュメントのバージョンを指定します。
[major, minor] という配列で指定します。

tag_directives には tag directive の配列を指定します。
それぞれの tag は [prefix, suffix] という文字列の配列で
表現します。

implicit...
...YAML 1.1 のドキュメントで、
tag directive を1つ持ち、 implicit にドキュメントが開始
している Document オブジェクトを生成しています。

Psych::Nodes::Document
.new(
[1,1],
tenderlovemaking.com,2009:",
true)

@see Psych::Handler#start_document...