Misc #9501 ยป 0001-lib-yaml.rb-Doc-Minor-changes-to-documentation-more-.patch
lib/yaml.rb | ||
---|---|---|
#
|
||
# 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"
|
||
#
|
||
... | ... | |
#
|
||
# == More info
|
||
#
|
||
# For more advanced details on the implementation see Psych, and also check out
|
||
# For more advanced details on the implementation see
|
||
# {Psych}[https://github.com/tenderlove/psych], and also check out
|
||
# http://yaml.org for spec details and other helpful information.
|
||
# Psych documentation can be found
|
||
# {here}[https://github.com/tenderlove/psych/blob/master/lib/psych.rb]. You can
|
||
# check out Syck {here}[https://github.com/tenderlove/syck]
|
||
module YAML
|
||
end
|