ruby-changes:25637
From: tenderlove <ko1@a...>
Date: Sat, 17 Nov 2012 11:29:00 +0900 (JST)
Subject: [ruby-changes:25637] tenderlove:r37694 (trunk): * ext/psych/lib/psych/core_ext.rb: move Kernel#y so that it can
tenderlove 2012-11-17 11:28:48 +0900 (Sat, 17 Nov 2012) New Revision: 37694 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=37694 Log: * ext/psych/lib/psych/core_ext.rb: move Kernel#y so that it can manually be required as 'psych/y'. * ext/psych/lib/psych/y.rb: ditto Added files: trunk/ext/psych/lib/psych/y.rb Modified files: trunk/ChangeLog trunk/ext/psych/lib/psych/core_ext.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 37693) +++ ChangeLog (revision 37694) @@ -1,3 +1,10 @@ +Sat Nov 17 11:26:36 2012 Aaron Patterson <aaron@t...> + + * ext/psych/lib/psych/core_ext.rb: move Kernel#y so that it can + manually be required as 'psych/y'. + + * ext/psych/lib/psych/y.rb: ditto + Sat Nov 17 08:13:48 2012 Benoit Daloze <eregontp@g...> * lib/abbrev.rb: fix r37113. Correct examples, fix style Index: ext/psych/lib/psych/core_ext.rb =================================================================== --- ext/psych/lib/psych/core_ext.rb (revision 37693) +++ ext/psych/lib/psych/core_ext.rb (revision 37694) @@ -31,12 +31,5 @@ end if defined?(::IRB) -module Kernel - def psych_y *objects - puts Psych.dump_stream(*objects) - end - remove_method :y rescue nil - alias y psych_y - private :y + require 'psych/y' end -end Index: ext/psych/lib/psych/y.rb =================================================================== --- ext/psych/lib/psych/y.rb (revision 0) +++ ext/psych/lib/psych/y.rb (revision 37694) @@ -0,0 +1,7 @@ +module Kernel + def y *objects + puts Psych.dump_stream(*objects) + end + private :y +end + -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/