class CFPropertyList::CFBoolean

This class contains a boolean value

def to_binary(bplist)

convert to binary
def to_binary(bplist)
  return bplist.bool_to_binary(@value);
end

def to_xml

convert to XML
def to_xml
  return LibXML::XML::Node.new(@value ? 'true' : 'false')
end