Skip to content

Instantly share code, notes, and snippets.

@brandon-beacher
Created February 17, 2011 21:52
Show Gist options
  • Save brandon-beacher/832800 to your computer and use it in GitHub Desktop.
Save brandon-beacher/832800 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="ISO-8859-1"?>
<people>
<names>
<name>Jim</name>
<name>Susan</name>
<name>Herbie</name>
<name>Nancy</name>
</names>
</people>
require 'xml/mapping'
class People
include XML::Mapping
array_node :names, "names", "name", :class=>String
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment