diff options
Diffstat (limited to 'lib/psych.rb')
-rw-r--r-- | lib/psych.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/psych.rb b/lib/psych.rb index e3038e7..63dc374 100644 --- a/lib/psych.rb +++ b/lib/psych.rb @@ -1,5 +1,4 @@ require 'psych/psych' - require 'psych/visitable' require 'psych/nodes' require 'psych/visitors' @@ -152,9 +151,11 @@ module Psych end end + # :stopdoc: @domain_types = {} def self.add_domain_type domain, type_tag, &block @domain_types[type_tag] = [domain, block] end class << self; attr_accessor :domain_types; end + # :startdoc: end |