summaryrefslogtreecommitdiffstats
path: root/doc/classes/Git/Object.html
diff options
context:
space:
mode:
authorscott Chacon <schacon@agadorsparticus.(none)>2007-11-19 07:34:25 -0800
committerscott Chacon <schacon@agadorsparticus.(none)>2007-11-19 07:34:25 -0800
commit824ab0ec43a3c9306e75e87537f8e2b3bcc3254e (patch)
tree49707bffd30fe4ca38299100c2f219459ceb48b8 /doc/classes/Git/Object.html
parentc7abfc156933fff21e765aeec1d9b94e1c9f9f7f (diff)
downloadthird_party-ruby-git-824ab0ec43a3c9306e75e87537f8e2b3bcc3254e.tar.gz
third_party-ruby-git-824ab0ec43a3c9306e75e87537f8e2b3bcc3254e.tar.xz
third_party-ruby-git-824ab0ec43a3c9306e75e87537f8e2b3bcc3254e.zip
updated docs
Diffstat (limited to 'doc/classes/Git/Object.html')
-rw-r--r--doc/classes/Git/Object.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/classes/Git/Object.html b/doc/classes/Git/Object.html
index a755c21..a5aad24 100644
--- a/doc/classes/Git/Object.html
+++ b/doc/classes/Git/Object.html
@@ -94,7 +94,7 @@ represents a git object
<h3 class="section-bar">Methods</h3>
<div class="name-list">
- <a href="#M000149">new</a>&nbsp;&nbsp;
+ <a href="#M000151">new</a>&nbsp;&nbsp;
</div>
</div>
@@ -126,11 +126,11 @@ Class <a href="Object/Tree.html" class="link">Git::Object::Tree</a><br />
<div id="methods">
<h3 class="section-bar">Public Class methods</h3>
- <div id="method-M000149" class="method-detail">
- <a name="M000149"></a>
+ <div id="method-M000151" class="method-detail">
+ <a name="M000151"></a>
<div class="method-heading">
- <a href="#M000149" class="method-signature">
+ <a href="#M000151" class="method-signature">
<span class="method-name">new</span><span class="method-args">(base, objectish, type = nil, is_tag = false)</span>
</a>
</div>
@@ -141,10 +141,10 @@ if we&#8217;re calling this, we don&#8217;t know what type it is yet so
this is our little factory method
</p>
<p><a class="source-toggle" href="#"
- onclick="toggleCode('M000149-source');return false;">[Source]</a></p>
- <div class="method-source-code" id="M000149-source">
+ onclick="toggleCode('M000151-source');return false;">[Source]</a></p>
+ <div class="method-source-code" id="M000151-source">
<pre>
-<span class="ruby-comment cmt"># File lib/git/object.rb, line 242</span>
+<span class="ruby-comment cmt"># File lib/git/object.rb, line 253</span>
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">new</span>(<span class="ruby-identifier">base</span>, <span class="ruby-identifier">objectish</span>, <span class="ruby-identifier">type</span> = <span class="ruby-keyword kw">nil</span>, <span class="ruby-identifier">is_tag</span> = <span class="ruby-keyword kw">false</span>)
<span class="ruby-keyword kw">if</span> <span class="ruby-identifier">is_tag</span>
<span class="ruby-identifier">sha</span> = <span class="ruby-identifier">base</span>.<span class="ruby-identifier">lib</span>.<span class="ruby-identifier">tag_sha</span>(<span class="ruby-identifier">objectish</span>)