diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/yaml.rb | 6 |
2 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Sun Feb 9 04:07:34 2014 Zachary Scott <[email protected]> + + * 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 <[email protected]> * include/ruby/ruby.h (OBJ_TAINTABLE, OBJ_TAINT, OBJ_INFECT), diff --git a/lib/yaml.rb b/lib/yaml.rb index f9f8e6d665..3b4e4234f7 100644 --- a/lib/yaml.rb +++ b/lib/yaml.rb @@ -56,7 +56,7 @@ end # # 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 # # 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 |