summaryrefslogtreecommitdiff
path: root/lib/psych.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-01-16 18:33:02 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2010-01-16 18:33:02 -0800
commitdbf891f8a2c2e4eab5dfe30b1169572de17a6225 (patch)
treeed0d2ff443389fa44aa7665c1ed41109989dceff /lib/psych.rb
parent9666b518f1b296ea9c4d6b07bd27ac1e9d73ad7b (diff)
downloadpsych-dbf891f8a2c2e4eab5dfe30b1169572de17a6225.zip
more docs
Diffstat (limited to 'lib/psych.rb')
-rw-r--r--lib/psych.rb3
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