Ruby 1.9.3 リファレンスマニュアル > ライブラリ一覧 > psych/handlerライブラリ > Psych::Handlerクラス > end_document

instance method Psych::Handler#end_document

end_document(implicit) [added by psych/handler]

[TODO]

Called with the document ends. +implicit+ is a boolean value indicating whether or not the document has an implicit ending.

Example

Given the following YAML:

---
  hello world

+implicit+ will be true. Given this YAML:

---
  hello world
...

+implicit+ will be false.

class Psych::Handler