summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-28 15:40:53 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-28 15:40:53 +0000
commitbdc8087f33a1ee6ed4eaf28efb904ac57f33e23a (patch)
treecae2a4e6398f8efd6df70fbb3436e9342d6fb556 /lib
parent253f49dbc25df81653cfcfe8f2421e082051cea0 (diff)
* lib/yaml.rb: Clarify documentation about YAML being always Psych.
Give a tip about using Syck. See #8344. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40516 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/yaml.rb33
1 files changed, 11 insertions, 22 deletions
diff --git a/lib/yaml.rb b/lib/yaml.rb
index a0cef570cb..44af45a41e 100644
--- a/lib/yaml.rb
+++ b/lib/yaml.rb
@@ -1,7 +1,5 @@
##
-# The YAML module allows you to use one of the two YAML engines that ship with
-# ruby. By default Psych is used but the old and unmaintained Syck may be
-# chosen.
+# The YAML module is an alias of Psych, the YAML engine for ruby.
begin
require 'psych'
@@ -15,13 +13,9 @@ end
YAML = Psych
module Psych # :nodoc:
+ # For compatibility, deprecated
class EngineManager
- # Returns the YAML engine in use.
- #
- # By default Psych is used but the old and unmaintained Syck may be chosen.
- #
- # See #yamler= for more information.
- attr_reader :yamler
+ attr_reader :yamler # :nodoc:
def initialize # :nodoc:
@yamler = 'psych'
@@ -31,18 +25,15 @@ module Psych # :nodoc:
false
end
- # By default Psych is used but the old and unmaintained Syck may be chosen.
- #
- # After installing the 'syck' gem, you can set the YAML engine to syck:
- #
- # YAML::ENGINE.yamler = 'syck'
+ # Psych is now always used and this method has no effect.
#
- # To set the YAML engine back to psych:
+ # This method is still present for compatibility.
#
- # YAML::ENGINE.yamler = 'psych'
+ # You may still use the Syck engine by installing
+ # the 'syck' gem and using the Syck constant.
def yamler= engine
case engine
- when 'syck' then warn "syck has been removed"
+ when 'syck' then warn "syck has been removed, psych is used instead"
when 'psych' then @yamler = 'psych'
else
raise(ArgumentError, "bad engine")
@@ -59,11 +50,9 @@ end
#
# This module provides a Ruby interface for data serialization in YAML format.
#
-# The underlying implementation depends on an engine to handle the parsing and
-# serialization for Ruby, by default this will be using the libyaml wrapper
-# Psych.
+# The underlying implementation is now always the libyaml wrapper Psych.
#
-# See Psych::EngineManager for details on switching the default YAML engine.
+# See Psych::EngineManager#yamler= for details on using Syck.
#
# Working with YAML can be very simple, for example:
#
@@ -80,6 +69,6 @@ end
# doc/security.rdoc for more information.
#
# For more advanced details on the implementation see Psych, and also check out
-# yaml.org for spec details and other helpful information.
+# http://yaml.org for spec details and other helpful information.
module YAML
end