From 38f009d6d0aa35b13d19575611db1c724a9d1a5b Mon Sep 17 00:00:00 2001 From: scott Chacon Date: Tue, 13 Nov 2007 07:36:50 -0800 Subject: updated a bunch of the documentation --- doc/classes/Git/Object/AbstractObject.html | 114 ++++++++++++++--------------- 1 file changed, 57 insertions(+), 57 deletions(-) (limited to 'doc/classes/Git/Object/AbstractObject.html') diff --git a/doc/classes/Git/Object/AbstractObject.html b/doc/classes/Git/Object/AbstractObject.html index 10d0080..222bc67 100644 --- a/doc/classes/Git/Object/AbstractObject.html +++ b/doc/classes/Git/Object/AbstractObject.html @@ -86,14 +86,14 @@

Methods

- contents   - contents_array   - diff   - grep   - log   - new   - setup   - to_s   + contents   + contents_array   + diff   + grep   + log   + new   + setup   + to_s  
@@ -143,24 +143,24 @@

Public Class methods

-
- +
+

[Source]

-
+ onclick="toggleCode('M000136-source');return false;">[Source]

+
-# File lib/git/object.rb, line 13
+# File lib/git/object.rb, line 14
       def initialize(base, sha)
         @base = base
-        @sha = sha
+        @sha = sha.to_s
         @size = @base.lib.object_size(@sha)
         setup
       end
@@ -171,21 +171,21 @@
 
       

Public Instance methods

-
- +
+

[Source]

-
+ onclick="toggleCode('M000137-source');return false;">[Source]

+
-# File lib/git/object.rb, line 20
+# File lib/git/object.rb, line 21
       def contents
         @base.lib.object_contents(@sha)
       end
@@ -194,21 +194,21 @@
         
-
- +
+

[Source]

-
+ onclick="toggleCode('M000138-source');return false;">[Source]

+
-# File lib/git/object.rb, line 24
+# File lib/git/object.rb, line 25
       def contents_array
         self.contents.split("\n")
       end
@@ -217,21 +217,21 @@
         
-
- +
+

[Source]

-
+ onclick="toggleCode('M000142-source');return false;">[Source]

+
-# File lib/git/object.rb, line 42
+# File lib/git/object.rb, line 43
       def diff(objectish)
         Git::Diff.new(@base, @sha, objectish)
       end
@@ -240,21 +240,21 @@
         
-
- +
+

[Source]

-
+ onclick="toggleCode('M000141-source');return false;">[Source]

+
-# File lib/git/object.rb, line 36
+# File lib/git/object.rb, line 37
       def grep(string, path_limiter = nil, opts = {})
         default = {:object => @sha, :path_limiter => path_limiter}
         grep_options = default.merge(opts)
@@ -265,21 +265,21 @@
         
-
- +
+

[Source]

-
+ onclick="toggleCode('M000143-source');return false;">[Source]

+
-# File lib/git/object.rb, line 46
+# File lib/git/object.rb, line 47
       def log(count = 30)
         Git::Log.new(@base, count).object(@sha)
       end
@@ -288,21 +288,21 @@
         
-
- +
+

[Source]

-
+ onclick="toggleCode('M000139-source');return false;">[Source]

+
-# File lib/git/object.rb, line 28
+# File lib/git/object.rb, line 29
       def setup
         raise NotImplementedError
       end
@@ -311,21 +311,21 @@
         
-
- +
+

[Source]

-
+ onclick="toggleCode('M000140-source');return false;">[Source]

+
-# File lib/git/object.rb, line 32
+# File lib/git/object.rb, line 33
       def to_s
         @sha
       end
-- 
cgit