Method: Psych::Handler#end_document
- Defined in:
- lib/psych/handler.rb
#end_document(implicit) ⇒ Object
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.
93 94 |
# File 'lib/psych/handler.rb', line 93 def end_document implicit end |