Class: FalseClass

Inherits:
Object show all
Defined in:
lib/syck/rubytypes.rb

Instance Method Summary collapse

Instance Method Details

#to_yaml(opts = {}) ⇒ Object



450
451
452
453
454
455
# File 'lib/syck/rubytypes.rb', line 450

def to_yaml( opts = {} )
       return super unless YAML::ENGINE.syck?
	YAML::quick_emit( nil, opts ) do |out|
           out.scalar( taguri, "false", :plain )
       end
end