Project

General

Profile

Actions

Bug #13115

closed

`YAML.dump` outputs deperecated message even with delegated object

Added by mtsmfm (Fumiaki Matsushima) over 7 years ago. Updated over 5 years ago.

Status:
Closed
Target version:
-
ruby -v:
ruby 2.4.0p0 (2016-12-24 revision 57164) [x86_64-linux]
[ruby-core:79013]

Description

YAML.dump outputs deprecated message if it calls with delegated object
but doesn't with inherited object:

require 'yaml'
require 'delegate'

$VERBOSE = true
class Delegated < DelegateClass(Object)
  def initialize
    super(Object.new)
  end
end

puts 'YAML.dump(Delegated.new)'
YAML.dump(Delegated.new)

class Inherited < Object
end
puts 'YAML.dump(Inherited.new)'
YAML.dump(Inherited.new)

# $ ruby test.rb
# YAML.dump(Delegated.new)
# implementing to_yaml is deprecated, please implement "encode_with"
# YAML.dump(Inherited.new)

Is this intentional?

Actions

Also available in: Atom PDF

Like0
Like0Like0