<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>.gitignore</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -37,16 +37,16 @@ spec = Gem::Specification.new do |s|
   s.author       = &quot;Mason Browne&quot;
   s.email        = &quot;mason.browne@gmail.com&quot;
   s.homepage     = &quot;http://heypanda.com&quot;
-  s.summary      = &quot;Bricklayer. RESTful API client builder for developers on the go.&quot;
+  s.summary      = &quot;Bricklayer. RESTful API client builder for Ruby developers on the go.&quot;
   s.bindir       = &quot;bin&quot;
   s.description  = s.summary
   s.executables  = []
   s.require_path = &quot;lib&quot;
-  s.files        = %w( LICENSE README Rakefile TODO ) + Dir[&quot;{docs,bin,spec,lib,examples,script}/**/*&quot;]
+  s.files        = %w( LICENSE README Rakefile ) + Dir[&quot;{docs,bin,spec,lib,examples,script}/**/*&quot;]
  
   # rdoc
   s.has_rdoc         = true
-  s.extra_rdoc_files = %w( README LICENSE TODO )
+  s.extra_rdoc_files = %w( README LICENSE )
   #s.rdoc_options     += RDOC_OPTS + [&quot;--exclude&quot;, &quot;^(app|uploads)&quot;]
  
   # Dependencies</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -162,7 +162,7 @@ module Bricklayer
         processed_service_url.gsub!(&quot;{#{k}}&quot;) do
           usable_call_params.delete(k)
           # URI encode these, since they're going in the uri directly
-          URI.encode(v)
+          urlencode(v)
         end
       end
       [processed_service_url, usable_call_params, self.request_method, self.wants, block || self.response_callback]
@@ -177,6 +177,10 @@ module Bricklayer
       ret
     end
     
+    def urlencode(str)
+      str.gsub(/[^a-zA-Z0-9_\.\-]/n) {|s| sprintf('%%%02x', s[0]) }
+    end
+    
   end
   
   </diff>
      <filename>lib/bricklayer.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>1c799d12b5e82ba9b8faa95fc10645f4eb9b3277</id>
    </parent>
  </parents>
  <author>
    <name>Mason Browne</name>
    <email>mason@thinknit.net</email>
  </author>
  <url>http://github.com/heypanda/bricklayer/commit/07bf94df766f8a7254452062e59265027af7726f</url>
  <id>07bf94df766f8a7254452062e59265027af7726f</id>
  <committed-date>2008-08-08T23:58:55-07:00</committed-date>
  <authored-date>2008-08-08T23:58:55-07:00</authored-date>
  <message>fixed gem task, changed URI.encode to a urlencode method</message>
  <tree>3ef8660c164c091addf7c0a9b177ca1661f1b7d8</tree>
  <committer>
    <name>Mason Browne</name>
    <email>mason@thinknit.net</email>
  </committer>
</commit>
