This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
to_yaml(opts = {})
public
This is compatibility code for syck
# File lib/rdoc/options.rb, line 1203
def to_yaml opts = {} # :nodoc:
return super if YAML.const_defined?(:ENGINE) and not YAML::ENGINE.syck?
YAML.quick_emit self, opts do |out|
out.map taguri, to_yaml_style do |map|
encode_with map
end
end
end