README.rdoc in smacks-apricoteatsgorilla-0.2.0 vs README.rdoc in smacks-apricoteatsgorilla-0.2.1
- old
+ new
@@ -2,11 +2,11 @@
Apricot eats Gorilla translates between XML documents and Ruby hashes.
It's based on CobraVsMongoose but uses Hpricot instead of REXML to parse
XML and it also doesn't follow the BadgerFish convention.
-It's initial purpose was to convert SOAP response messages to Ruby hashes,
+Its initial purpose was to convert SOAP response messages to Ruby hashes,
but it quickly evolved into a more general translation tool.
== Install
$ sudo gem install smacks-apricoteatsgorilla --source http://gems.github.com
@@ -34,16 +34,16 @@
</return>
</ns2:findCustomerByIdResponse>
</soap:Body>
</soap:Envelope>
-Just pass in the raw XML string like this:
+Just pass in the raw XML string:
require "rubygems"
require "apricoteatsgorilla
hash = ApricotEatsGorilla.xml_to_hash(xml, "//return")
-And it gets converted into a nice little hash:
+And it gets converted into a nice little Hash:
"empty" => false,
"customer" => {
"address" => nil,
"name" => "Jungle Julia",