<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -11,9 +11,17 @@ begin
     gem.homepage = &quot;http://github.com/fcoury/octopi&quot;
     gem.authors = [&quot;Felipe Coury&quot;]
     gem.rubyforge_project = &quot;octopi&quot;
+    gem.add_dependency('nokogiri', '&gt;= 1.3.1')
+    gem.add_dependency('httparty', '&gt;= 0.4.5')
+    gem.files.exclude 'test/**/*'
+    gem.files.exclude 'test*'
+    gem.files.exclude 'doc/**/*'
+    gem.files.exclude 'examples/**/*'
+    
 
     # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
   end
+  Jeweler::GemcutterTasks.new
 rescue LoadError
   puts &quot;Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com&quot;
 end</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,12 +1,15 @@
+# Generated by jeweler
+# DO NOT EDIT THIS FILE
+# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
 # -*- encoding: utf-8 -*-
 
 Gem::Specification.new do |s|
   s.name = %q{octopi}
-  s.version = &quot;0.1.0&quot;
+  s.version = &quot;0.2.0&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;Felipe Coury&quot;]
-  s.date = %q{2009-07-21}
+  s.date = %q{2009-11-06}
   s.email = %q{felipe.coury@gmail.com}
   s.extra_rdoc_files = [
     &quot;LICENSE&quot;,
@@ -14,55 +17,81 @@ Gem::Specification.new do |s|
   ]
   s.files = [
     &quot;.gitignore&quot;,
+     &quot;.yardoc&quot;,
      &quot;LICENSE&quot;,
      &quot;README.rdoc&quot;,
      &quot;Rakefile&quot;,
      &quot;VERSION.yml&quot;,
      &quot;contrib/backup.rb&quot;,
-     &quot;examples/authenticated.rb&quot;,
-     &quot;examples/github.yml.example&quot;,
-     &quot;examples/issues.rb&quot;,
-     &quot;examples/overall.rb&quot;,
+     &quot;lib/ext/string_ext.rb&quot;,
      &quot;lib/octopi.rb&quot;,
+     &quot;lib/octopi/api.rb&quot;,
      &quot;lib/octopi/base.rb&quot;,
      &quot;lib/octopi/blob.rb&quot;,
      &quot;lib/octopi/branch.rb&quot;,
+     &quot;lib/octopi/branch_set.rb&quot;,
+     &quot;lib/octopi/comment.rb&quot;,
      &quot;lib/octopi/commit.rb&quot;,
      &quot;lib/octopi/error.rb&quot;,
      &quot;lib/octopi/file_object.rb&quot;,
+     &quot;lib/octopi/gist.rb&quot;,
      &quot;lib/octopi/issue.rb&quot;,
+     &quot;lib/octopi/issue_comment.rb&quot;,
+     &quot;lib/octopi/issue_set.rb&quot;,
      &quot;lib/octopi/key.rb&quot;,
+     &quot;lib/octopi/key_set.rb&quot;,
+     &quot;lib/octopi/plan.rb&quot;,
      &quot;lib/octopi/repository.rb&quot;,
+     &quot;lib/octopi/repository_set.rb&quot;,
      &quot;lib/octopi/resource.rb&quot;,
+     &quot;lib/octopi/self.rb&quot;,
      &quot;lib/octopi/tag.rb&quot;,
      &quot;lib/octopi/user.rb&quot;,
-     &quot;octopi.gemspec&quot;,
-     &quot;test/octopi_test.rb&quot;,
-     &quot;test/test_helper.rb&quot;
+     &quot;octopi.gemspec&quot;
   ]
-  s.has_rdoc = true
   s.homepage = %q{http://github.com/fcoury/octopi}
   s.rdoc_options = [&quot;--charset=UTF-8&quot;]
   s.require_paths = [&quot;lib&quot;]
   s.rubyforge_project = %q{octopi}
-  s.rubygems_version = %q{1.3.2}
+  s.rubygems_version = %q{1.3.5}
   s.summary = %q{A Ruby interface to GitHub API v2}
   s.test_files = [
-    &quot;test/octopi_test.rb&quot;,
+    &quot;test/api_test.rb&quot;,
+     &quot;test/authenticated_test.rb&quot;,
+     &quot;test/blob_test.rb&quot;,
+     &quot;test/branch_test.rb&quot;,
+     &quot;test/commit_test.rb&quot;,
+     &quot;test/file_object_test.rb&quot;,
+     &quot;test/gist_test.rb&quot;,
+     &quot;test/issue_comment.rb&quot;,
+     &quot;test/issue_set_test.rb&quot;,
+     &quot;test/issue_test.rb&quot;,
+     &quot;test/key_set_test.rb&quot;,
+     &quot;test/key_test.rb&quot;,
+     &quot;test/repository_set_test.rb&quot;,
+     &quot;test/repository_test.rb&quot;,
+     &quot;test/stubs/commits/fcoury/octopi/octopi.rb&quot;,
+     &quot;test/tag_test.rb&quot;,
      &quot;test/test_helper.rb&quot;,
+     &quot;test/user_test.rb&quot;,
      &quot;examples/authenticated.rb&quot;,
      &quot;examples/issues.rb&quot;,
      &quot;examples/overall.rb&quot;
   ]
-  
-  s.add_dependency(%q&lt;nokogiri&gt;, [&quot;&gt;= 1.2.1&quot;])
+
   if s.respond_to? :specification_version then
     current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
     s.specification_version = 3
 
     if Gem::Version.new(Gem::RubyGemsVersion) &gt;= Gem::Version.new('1.2.0') then
+      s.add_runtime_dependency(%q&lt;nokogiri&gt;, [&quot;&gt;= 1.3.1&quot;])
+      s.add_runtime_dependency(%q&lt;httparty&gt;, [&quot;&gt;= 0.4.5&quot;])
     else
+      s.add_dependency(%q&lt;nokogiri&gt;, [&quot;&gt;= 1.3.1&quot;])
+      s.add_dependency(%q&lt;httparty&gt;, [&quot;&gt;= 0.4.5&quot;])
     end
   else
+    s.add_dependency(%q&lt;nokogiri&gt;, [&quot;&gt;= 1.3.1&quot;])
+    s.add_dependency(%q&lt;httparty&gt;, [&quot;&gt;= 0.4.5&quot;])
   end
 end</diff>
      <filename>octopi.gemspec</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>f85f665e729dda5941154761f35cef326c41b7d9</id>
    </parent>
  </parents>
  <author>
    <name>Ryan Bigg</name>
    <email>radarlistener@gmail.com</email>
  </author>
  <url>http://github.com/fcoury/octopi/commit/795253f76a95391408b25f7f7a2ec0408fe4210b</url>
  <id>795253f76a95391408b25f7f7a2ec0408fe4210b</id>
  <committed-date>2009-11-05T12:25:40-08:00</committed-date>
  <authored-date>2009-11-05T12:25:40-08:00</authored-date>
  <message>Generate gemspec that includes httparty. Closes GH-35</message>
  <tree>3bda8919c9df45accde5aa5c85d92cf0975d6a57</tree>
  <committer>
    <name>Ryan Bigg</name>
    <email>radarlistener@gmail.com</email>
  </committer>
</commit>
