diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2009-09-26 23:40:46 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2009-09-26 23:40:46 -0700 |
commit | a59a8c0fc75f6c0339facdd90302eb352e9d8ea6 (patch) | |
tree | 3313403dcdaf32fef09c6116d4b626ae430b7fe3 /lib | |
parent | fd76e1c22a0c4a639d10c458733dea7a46390492 (diff) | |
download | psych-a59a8c0fc75f6c0339facdd90302eb352e9d8ea6.zip |
supporting scalar tags
Diffstat (limited to 'lib')
-rw-r--r-- | lib/psych/parser/handler.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/psych/parser/handler.rb b/lib/psych/parser/handler.rb index 599dfe2..a36e8fa 100644 --- a/lib/psych/parser/handler.rb +++ b/lib/psych/parser/handler.rb @@ -26,7 +26,7 @@ module Psych ### # Called when a scalar +value+ is found - def scalar value + def scalar tag, value end ### |