diff options
Diffstat (limited to 'ext/psych/lib/psych/handler.rb')
-rw-r--r-- | ext/psych/lib/psych/handler.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/psych/lib/psych/handler.rb b/ext/psych/lib/psych/handler.rb index bfc62d701f..a2aa6bb178 100644 --- a/ext/psych/lib/psych/handler.rb +++ b/ext/psych/lib/psych/handler.rb @@ -211,5 +211,11 @@ module Psych # Called when the YAML stream ends def end_stream end + + ### + # Is this handler a streaming handler? + def streaming? + false + end end end |