ruby-changes:32814
From: zzak <ko1@a...>
Date: Sun, 9 Feb 2014 04:08:51 +0900 (JST)
Subject: [ruby-changes:32814] zzak:r44893 (trunk): * lib/yaml.rb: [DOC] Add links to syck and psych on github [Bug #9501]
zzak 2014-02-09 04:08:45 +0900 (Sun, 09 Feb 2014) New Revision: 44893 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=44893 Log: * lib/yaml.rb: [DOC] Add links to syck and psych on github [Bug #9501] Based on a patch by Giorgos Tsiftsis [ci skip] Modified files: trunk/ChangeLog trunk/lib/yaml.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 44892) +++ ChangeLog (revision 44893) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sun Feb 9 04:07:34 2014 Zachary Scott <e@z...> + + * lib/yaml.rb: [DOC] Add links to syck and psych on github [Bug #9501] + Based on a patch by Giorgos Tsiftsis + Sun Feb 9 02:13:53 2014 Nobuyoshi Nakada <nobu@r...> * include/ruby/ruby.h (OBJ_TAINTABLE, OBJ_TAINT, OBJ_INFECT), Index: lib/yaml.rb =================================================================== --- lib/yaml.rb (revision 44892) +++ lib/yaml.rb (revision 44893) @@ -56,7 +56,7 @@ end https://github.com/ruby/ruby/blob/trunk/lib/yaml.rb#L56 # # Working with YAML can be very simple, for example: # -# require 'yaml' # STEP ONE, REQUIRE YAML! +# require 'yaml' # # Parse a YAML string # YAML.load("--- foo") #=> "foo" # @@ -85,5 +85,9 @@ end https://github.com/ruby/ruby/blob/trunk/lib/yaml.rb#L85 # # For more advanced details on the implementation see Psych, and also check out # http://yaml.org for spec details and other helpful information. +# +# Pysch is maintained by Aaron Patterson on github: https://github.com/tenderlove/psych +# +# Syck can also be found on github: https://github.com/tenderlove/syck module YAML end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/