summaryrefslogtreecommitdiff
path: root/lib/psych/handler.rb
AgeCommit message (Collapse)Author
2018-04-27Correct doc typo "achor" should be "anchor"utilum
2017-08-02Add Psych::Handler#event_locationAry Borenszweig
This adds a new reported event to Psych::Handler, event_location, with precise start/end line/column information. The line/column information provided by Psych::Parser#mark is not very useful because it points to the location past the event.
2017-06-19make frozen_string_literal: trueSHIBATA Hiroshi
2016-02-23Temporary disabled to frozen literal string.SHIBATA Hiroshi
ref. https://github.com/ruby/ruby/commit/3e92b635fb5422207b7bbdc924e292e51e21f040
2012-10-28* ext/psych/lib/psych/handlers/recorder.rb: added a class forAaron Patterson
recording YAML parse and emit events. * ext/psych/lib/psych/handler.rb: adding a list of events so that handler classes can more easily be meta-programmed. * test/psych/handlers/test_recorder.rb: tests for the change.
2012-07-18* ext/psych/emitter.c (initialize): allow a configuration object to beAaron Patterson
passed to the constructor so that mutation isn't required after instantiation. * ext/psych/lib/psych/handler.rb: add configuration object * ext/psych/lib/psych/visitors/emitter.rb: use configuration object if extra configuration is present.
2010-05-19adding yaml streaming apiAaron Patterson
2010-01-04documentation about mapsAaron Patterson
2010-01-03sequence documentationAaron Patterson
2010-01-03scalar documentationAaron Patterson
2010-01-03adding more documentationAaron Patterson
2009-09-28documents can convert to rubyAaron Patterson
2009-09-28moving constants around, starting the to_ruby visitorAaron Patterson
2009-09-27moving handlerAaron Patterson