No need to override the to_yaml method in ActiveSupporte::SafeBuffer

This commit is contained in:
Rafael Mendonça França 2012-01-04 14:14:16 -03:00
parent d8ed247c7f
commit ae7dcb4bec

@ -136,11 +136,6 @@ def encode_with(coder)
coder.represent_scalar nil, to_str
end
def to_yaml(*args)
return super() if !YAML::ENGINE.syck?
to_str.to_yaml(*args)
end
UNSAFE_STRING_METHODS.each do |unsafe_method|
if 'String'.respond_to?(unsafe_method)
class_eval <<-EOT, __FILE__, __LINE__ + 1