Class Symbol
In: lib/uttk/dumpers/Yaml.rb
Parent: Object
Author:Nicolas Pouillard <ertai@lrde.epita.fr>.
Copyright:Copyright (c) 2004, 2005 Uttk team. All rights reserved.
License:LGPL

$Id: /w/fey/uttk/trunk/lib/uttk/dumpers/Yaml.rb 24396 2006-07-10T08:23:37.784417Z ertai $

Methods

to_yaml  

External Aliases

to_yaml -> old_to_yaml

Public Instance methods

[Source]

# File lib/uttk/dumpers/Yaml.rb, line 8
  def to_yaml ( opts={} )
    if YAML.have_option? opts, :uttk
      self.to_s.to_yaml(opts)
    else
      old_to_yaml(opts)
    end
  end

[Validate]