<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -15,9 +15,8 @@ http://twitter.com/octopi_gem
 
 If you have your &lt;tt&gt;~/.gitconfig&lt;/tt&gt; file in place, and you have a [github] section (if you don't, take a look at this GitHub Guides entry: http://github.com/guides/tell-git-your-user-name-and-email-address), you can use seamless authentication using this method:
 
-  authenticated do |g|
-    repo = g.repository(&quot;api-labrat&quot;)
-    (...)
+  authenticated do 
+    repo = Repository.find(:name =&gt; &quot;api-labrat&quot;, :user =&gt; &quot;fcoury&quot;)
   end
   
 === Explicit authentication
@@ -26,14 +25,23 @@ Sometimes, you may not want to get authentication data from &lt;tt&gt;~/.gitconfig&lt;/tt
 
 &lt;b&gt;1. Providing login and token inline:&lt;/b&gt;
 
-  authenticated_with &quot;mylogin&quot;, &quot;mytoken&quot; do |g|
-    repo = g.repository(&quot;api-labrat&quot;)
+  authenticated_with &quot;mylogin&quot;, &quot;mytoken&quot; do 
+    repo = Repository.find(:name =&gt; &quot;api-labrat&quot;, :user =&gt; &quot;fcoury&quot;)
     issue = repo.open_issue :title =&gt; &quot;Sample issue&quot;, 
       :body =&gt; &quot;This issue was opened using GitHub API and Octopi&quot;
     puts issue.number
   end
-  
-&lt;b&gt;2. Providing a YAML file with authentication information:&lt;/b&gt;
+
+&lt;b&gt;2. Providing login and password inline:&lt;/b&gt;
+
+  authenticated_with &quot;mylogin&quot;, &quot;password&quot; do 
+    repo = Repository.find(:name =&gt; &quot;api-labrat&quot;, :user =&gt; &quot;fcoury&quot;)
+    issue = repo.open_issue :title =&gt; &quot;Sample issue&quot;, 
+      :body =&gt; &quot;This issue was opened using GitHub API and Octopi&quot;
+    puts issue.number
+  end
+
+&lt;b&gt;3. Providing a YAML file with authentication information:&lt;/b&gt;
 
 Use the following format:
 
@@ -116,40 +124,6 @@ Single commit information:
   puts &quot;Diff:&quot;
   first_commit.details.modified.each {|m| puts &quot;#{m['filename']} DIFF: #{m['diff']}&quot; }
 
-== Tracing
-
-=== Levels
-
-You can can use tracing to enable better debugging output when something goes wrong. There are 3 tracing levels: 
-
-* false (default) - no tracing
-* true - will output each GET and POST calls, along with URL and params
-* curl - same as true, but additionally outputs the curl command to replicate the issue
-
-If you choose curl tracing, the curl command equivalent to each command sent to GitHub will be output to the stdout, like this example:
-
-  =&gt; Trace on: curl
-  POST: /issues/open/webbynode/api-labrat params: body=This issue was opened using GitHub API and Octopi, title=Sample issue
-  ===== curl version
-  curl -F 'body=This issue was opened using GitHub API and Octopi' -F 'login=mylogin' -F 'token=mytoken' -F 'title=Sample issue' http://github.com/api/v2/issues/open/webbynode/api-labrat
-  ==================
-  
-=== Enabling
-
-Tracing can be enabled in different ways, depending on the API feature you're using:
-
-&lt;b&gt;Anonymous (this will be improved later):&lt;/b&gt;
-
-  ANONYMOUS_API.trace_level = &quot;trace-level&quot;
-  
-&lt;b&gt;Seamless authenticated&lt;/b&gt;
-
-  authenticated :trace =&gt; &quot;trace-level&quot; do |g|; ...; end
-  
-&lt;b&gt;Explicitly authenticated&lt;/b&gt;
-
-Current version of explicit authentication requires a :config param to a YAML file to allow tracing. For enabling tracing on a YAML file refer to the config.yml example presented on the Explicit authentication section.
-
 == Author
 
 * Felipe Coury - http://felipecoury.com
@@ -159,6 +133,7 @@ Current version of explicit authentication requires a :config param to a YAML fi
 
 In alphabetical order:
 
+* Ryan Bigg - http://frozenplague.net
 * Brandon Calloway - http://github.com/bcalloway
 * runpaint - http://github.com/runpaint
 </diff>
      <filename>README.rdoc</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>3eb9f9c111abbe65dd2d18ffc0530f310f7873ea</id>
    </parent>
  </parents>
  <author>
    <name>Ryan Bigg</name>
    <email>radarlistener@gmail.com</email>
  </author>
  <url>http://github.com/fcoury/octopi/commit/8dcbf5755d7769b5ac408c3569cac3f1147a38ed</url>
  <id>8dcbf5755d7769b5ac408c3569cac3f1147a38ed</id>
  <committed-date>2009-08-06T00:02:43-07:00</committed-date>
  <authored-date>2009-08-06T00:02:43-07:00</authored-date>
  <message>Updated readme.</message>
  <tree>64b21c0627b24f6201ff8b9d678cdc1e16839e04</tree>
  <committer>
    <name>Ryan Bigg</name>
    <email>radarlistener@gmail.com</email>
  </committer>
</commit>
