Skip to content

Instantly share code, notes, and snippets.

@josevalim
Forked from neerajsingh0101/to_xml
Created April 26, 2010 10:52
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 josevalim/379198 to your computer and use it in GitHub Desktop.
Save josevalim/379198 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], {:foo => :bar}, User]
puts a.to_xml
<?xml version="1.0" encoding="UTF-8"?>
<objects type="array">
<object type="integer">10</object>
<object type="array">
<object type="integer">20</object>
<object type="integer">30</object>
<object type="array">
<object>helo</object>
<object>world</object>
</object>
</object>
<object type="array">
<object type="float">1.2</object>
<object type="float">1.3</object>
</object>
<object>
<foo>bar</foo>
</object>
<object>User</object>
</objects>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment