summaryrefslogtreecommitdiff
path: root/ext/psych/lib/psych/json/stream.rb
diff options
context:
space:
mode:
authortenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-02-21 01:06:34 +0000
committertenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-02-21 01:06:34 +0000
commit73af8137d9df0ef0bbdf49c4744242f727ed227f (patch)
treef8e648ca8a4708ddd2caa06f5a4cf415ae4121e2 /ext/psych/lib/psych/json/stream.rb
parent6673f4e8afb9d468849bcc7d87c82c46c799f119 (diff)
* ext/psych/lib/psych/json/ruby_events.rb: DRY up ruby event handling
for JSON. * ext/psych/lib/psych/visitors/json_tree.rb: use ruby events module * ext/psych/lib/psych/json/stream.rb: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30929 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/psych/lib/psych/json/stream.rb')
-rw-r--r--ext/psych/lib/psych/json/stream.rb18
1 files changed, 4 insertions, 14 deletions
diff --git a/ext/psych/lib/psych/json/stream.rb b/ext/psych/lib/psych/json/stream.rb
index b240b6cbdb..60c458ad38 100644
--- a/ext/psych/lib/psych/json/stream.rb
+++ b/ext/psych/lib/psych/json/stream.rb
@@ -1,6 +1,10 @@
+require 'psych/json/ruby_events'
+
module Psych
module JSON
class Stream < Psych::Stream
+ include Psych::JSON::RubyEvents
+
class Emitter < Psych::Stream::Emitter # :nodoc:
def start_document version, tag_directives, implicit
super(version, tag_directives, !streaming?)
@@ -22,20 +26,6 @@ module Psych
end
end
end
-
- def visit_Time o
- formatted = format_time o
- @emitter.scalar formatted, nil, nil, false, true, Nodes::Scalar::DOUBLE_QUOTED
- end
-
- def visit_DateTime o
- visit_Time o.to_time
- end
-
- def visit_String o
- @emitter.scalar o.to_s, nil, nil, false, true, Nodes::Scalar::DOUBLE_QUOTED
- end
- alias :visit_Symbol :visit_String
end
end
end