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

* ext/psych/lib/psych/y.rb: Document Kernel#y by Adam Stankiewicz

[Github tenderlove/psych#118]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39286 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
zzak 2013-02-16 16:19:46 +00:00
parent 25575b7cd7
commit e39caa7550
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Sun Feb 17 01:19:00 2013 Zachary Scott <zachary@zacharyscott.net>
* ext/psych/lib/psych/y.rb: Document Kernel#y by Adam Stankiewicz
[Github tenderlove/psych#118]
Sun Feb 17 00:52:14 2013 NARUSE, Yui <naruse@ruby-lang.org>
* tool/mkconfig.rb: remove prefix from rubyarchdir.

View file

@ -1,4 +1,6 @@
module Kernel
###
# An alias for Psych.dump_stream meant to be used with IRB.
def y *objects
puts Psych.dump_stream(*objects)
end