1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

moving autoload to require so that the correct files are required

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30930 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tenderlove 2011-02-21 01:49:41 +00:00
parent 73af8137d9
commit 816c7900fd

View file

@ -9,6 +9,7 @@ require 'psych/set'
require 'psych/coder' require 'psych/coder'
require 'psych/core_ext' require 'psych/core_ext'
require 'psych/deprecated' require 'psych/deprecated'
require 'psych/json'
### ###
# = Overview # = Overview
@ -97,7 +98,6 @@ module Psych
end end
autoload :Stream, 'psych/stream' autoload :Stream, 'psych/stream'
autoload :JSON, 'psych/json'
### ###
# Load +yaml+ in to a Ruby data structure. If multiple documents are # Load +yaml+ in to a Ruby data structure. If multiple documents are