<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,7 @@
+== 0.2.2 2008-12-08
+* 1 bug fix
+  * Added the missing core extension hash method to_xml_attributes
+
 == 0.2.1 2008-12-08
 * 1 bug fix
   * Fixed that HTTParty was borking ActiveSupport and as such Rails (thanks to Rob Sanheim)</diff>
      <filename>History</filename>
    </modified>
    <modified>
      <diff>@@ -333,4 +333,15 @@ class Hash
 
     param
   end
+  
+  # @return &lt;String&gt; The hash as attributes for an XML tag.
+  #
+  # @example
+  #   { :one =&gt; 1, &quot;two&quot;=&gt;&quot;TWO&quot; }.to_xml_attributes
+  #     #=&gt; 'one=&quot;1&quot; two=&quot;TWO&quot;'
+  def to_xml_attributes
+    map do |k,v|
+      %{#{k.to_s.snake_case.sub(/^(.{1,1})/) { |m| m.downcase }}=&quot;#{v}&quot;}
+    end.join(' ')
+  end
 end
\ No newline at end of file</diff>
      <filename>lib/core_extensions.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
 module HTTParty
-  Version = '0.2.1'
+  Version = '0.2.2'
 end
\ No newline at end of file</diff>
      <filename>lib/httparty/version.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>a0f8ade61b7ffb732ae0cdaf1262dc74b1f4e5dc</id>
    </parent>
  </parents>
  <author>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </author>
  <url>http://github.com/jnunemaker/httparty/commit/6f361ed59e11ca29e4967c876567be7cf8e9cca7</url>
  <id>6f361ed59e11ca29e4967c876567be7cf8e9cca7</id>
  <committed-date>2008-12-08T18:30:26-08:00</committed-date>
  <authored-date>2008-12-08T18:30:26-08:00</authored-date>
  <message>Added missing to_xml_attributes method to hash</message>
  <tree>3af2edd1d75319cc13369946facedac0a69faaea</tree>
  <committer>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </committer>
</commit>
