Skip to content

Instantly share code, notes, and snippets.

@neerajsingh0101
Created April 26, 2010 09:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save neerajsingh0101/379132 to your computer and use it in GitHub Desktop.
Save neerajsingh0101/379132 to your computer and use it in GitHub Desktop.
# note that last item is User class
a = [10, [20, 30, ["helo", "world"]], [1.2, 1.3], User]
puts a.to_xml
<?xml version="1.0" encoding="UTF-8"?>
<records type="array">
<record type="integer">10</record>
<records type="array">
<record type="integer">20</record>
<record type="integer">30</record>
<strings type="array">
<record>helo</record>
<record>world</record>
</strings>
</records>
<floats type="array">
<record type="float">1.2</record>
<record type="float">1.3</record>
</floats>
<record>User</record>
</records>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment