git 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of git might be problematic. Click here for more details.
- data/doc/classes/Git/Base.html +336 -336
- data/doc/classes/Git/Branch.html +74 -74
- data/doc/classes/Git/Branches.html +36 -36
- data/doc/classes/Git/Diff.html +64 -64
- data/doc/classes/Git/Diff/DiffFile.html +12 -12
- data/doc/classes/Git/Lib.html +397 -318
- data/doc/classes/Git/Log.html +2 -2
- data/doc/classes/Git/Object.html +7 -7
- data/doc/classes/Git/Object/AbstractObject.html +91 -91
- data/doc/classes/Git/Object/Blob.html +6 -6
- data/doc/classes/Git/Object/Commit.html +134 -74
- data/doc/classes/Git/Object/Tag.html +7 -7
- data/doc/classes/Git/Object/Tree.html +36 -36
- data/doc/classes/Git/Path.html +24 -24
- data/doc/classes/Git/Remote.html +41 -41
- data/doc/created.rid +1 -1
- data/doc/files/lib/git/branch_rb.html +1 -1
- data/doc/files/lib/git/diff_rb.html +1 -1
- data/doc/files/lib/git/lib_rb.html +1 -1
- data/doc/files/lib/git/log_rb.html +1 -1
- data/doc/files/lib/git/object_rb.html +1 -1
- data/doc/fr_method_index.html +183 -179
- data/lib/git.rb +1 -1
- data/lib/git/branch.rb +1 -1
- data/lib/git/lib.rb +71 -29
- data/lib/git/log.rb +4 -4
- data/lib/git/object.rb +20 -6
- data/tests/units/test_lib.rb +4 -4
- data/tests/units/test_log.rb +2 -5
- data/tests/units/test_object.rb +3 -3
- metadata +2 -2
data/doc/classes/Git/Log.html
CHANGED
@@ -175,7 +175,7 @@ object that holds the last X commits on given branch
|
|
175
175
|
<span class="ruby-comment cmt"># File lib/git/log.rb, line 42</span>
|
176
176
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">between</span>(<span class="ruby-identifier">sha1</span>, <span class="ruby-identifier">sha2</span> = <span class="ruby-keyword kw">nil</span>)
|
177
177
|
<span class="ruby-identifier">dirty_log</span>
|
178
|
-
<span class="ruby-ivar">@between</span> = [<span class="ruby-
|
178
|
+
<span class="ruby-ivar">@between</span> = [<span class="ruby-identifier">sha1</span>, <span class="ruby-identifier">sha2</span>]
|
179
179
|
<span class="ruby-keyword kw">return</span> <span class="ruby-keyword kw">self</span>
|
180
180
|
<span class="ruby-keyword kw">end</span>
|
181
181
|
</pre>
|
@@ -351,7 +351,7 @@ forces git log to run
|
|
351
351
|
<pre>
|
352
352
|
<span class="ruby-comment cmt"># File lib/git/log.rb, line 48</span>
|
353
353
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">to_s</span>
|
354
|
-
<span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">map</span> { <span class="ruby-operator">|</span><span class="ruby-identifier">c</span><span class="ruby-operator">|</span> <span class="ruby-identifier">c</span>.<span class="ruby-identifier">
|
354
|
+
<span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">map</span> { <span class="ruby-operator">|</span><span class="ruby-identifier">c</span><span class="ruby-operator">|</span> <span class="ruby-identifier">c</span>.<span class="ruby-identifier">to_s</span> }.<span class="ruby-identifier">join</span>(<span class="ruby-value str">"\n"</span>)
|
355
355
|
<span class="ruby-keyword kw">end</span>
|
356
356
|
</pre>
|
357
357
|
</div>
|
data/doc/classes/Git/Object.html
CHANGED
@@ -94,7 +94,7 @@ represents a git object
|
|
94
94
|
<h3 class="section-bar">Methods</h3>
|
95
95
|
|
96
96
|
<div class="name-list">
|
97
|
-
<a href="#
|
97
|
+
<a href="#M000151">new</a>
|
98
98
|
</div>
|
99
99
|
</div>
|
100
100
|
|
@@ -126,11 +126,11 @@ Class <a href="Object/Tree.html" class="link">Git::Object::Tree</a><br />
|
|
126
126
|
<div id="methods">
|
127
127
|
<h3 class="section-bar">Public Class methods</h3>
|
128
128
|
|
129
|
-
<div id="method-
|
130
|
-
<a name="
|
129
|
+
<div id="method-M000151" class="method-detail">
|
130
|
+
<a name="M000151"></a>
|
131
131
|
|
132
132
|
<div class="method-heading">
|
133
|
-
<a href="#
|
133
|
+
<a href="#M000151" class="method-signature">
|
134
134
|
<span class="method-name">new</span><span class="method-args">(base, objectish, type = nil, is_tag = false)</span>
|
135
135
|
</a>
|
136
136
|
</div>
|
@@ -141,10 +141,10 @@ if we’re calling this, we don’t know what type it is yet so
|
|
141
141
|
this is our little factory method
|
142
142
|
</p>
|
143
143
|
<p><a class="source-toggle" href="#"
|
144
|
-
onclick="toggleCode('
|
145
|
-
<div class="method-source-code" id="
|
144
|
+
onclick="toggleCode('M000151-source');return false;">[Source]</a></p>
|
145
|
+
<div class="method-source-code" id="M000151-source">
|
146
146
|
<pre>
|
147
|
-
<span class="ruby-comment cmt"># File lib/git/object.rb, line
|
147
|
+
<span class="ruby-comment cmt"># File lib/git/object.rb, line 256</span>
|
148
148
|
<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>)
|
149
149
|
<span class="ruby-keyword kw">if</span> <span class="ruby-identifier">is_tag</span>
|
150
150
|
<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>)
|
@@ -86,21 +86,21 @@
|
|
86
86
|
<h3 class="section-bar">Methods</h3>
|
87
87
|
|
88
88
|
<div class="name-list">
|
89
|
-
<a href="#
|
90
|
-
<a href="#
|
91
|
-
<a href="#
|
92
|
-
<a href="#
|
93
|
-
<a href="#
|
94
|
-
<a href="#
|
95
|
-
<a href="#
|
96
|
-
<a href="#
|
97
|
-
<a href="#
|
98
|
-
<a href="#
|
99
|
-
<a href="#
|
100
|
-
<a href="#
|
101
|
-
<a href="#
|
102
|
-
<a href="#
|
103
|
-
<a href="#
|
89
|
+
<a href="#M000175">archive</a>
|
90
|
+
<a href="#M000177">blob?</a>
|
91
|
+
<a href="#M000178">commit?</a>
|
92
|
+
<a href="#M000168">contents</a>
|
93
|
+
<a href="#M000169">contents_array</a>
|
94
|
+
<a href="#M000173">diff</a>
|
95
|
+
<a href="#M000172">grep</a>
|
96
|
+
<a href="#M000174">log</a>
|
97
|
+
<a href="#M000165">new</a>
|
98
|
+
<a href="#M000170">setup</a>
|
99
|
+
<a href="#M000166">sha</a>
|
100
|
+
<a href="#M000167">size</a>
|
101
|
+
<a href="#M000179">tag?</a>
|
102
|
+
<a href="#M000171">to_s</a>
|
103
|
+
<a href="#M000176">tree?</a>
|
104
104
|
</div>
|
105
105
|
</div>
|
106
106
|
|
@@ -150,19 +150,19 @@
|
|
150
150
|
<div id="methods">
|
151
151
|
<h3 class="section-bar">Public Class methods</h3>
|
152
152
|
|
153
|
-
<div id="method-
|
154
|
-
<a name="
|
153
|
+
<div id="method-M000165" class="method-detail">
|
154
|
+
<a name="M000165"></a>
|
155
155
|
|
156
156
|
<div class="method-heading">
|
157
|
-
<a href="#
|
157
|
+
<a href="#M000165" class="method-signature">
|
158
158
|
<span class="method-name">new</span><span class="method-args">(base, objectish)</span>
|
159
159
|
</a>
|
160
160
|
</div>
|
161
161
|
|
162
162
|
<div class="method-description">
|
163
163
|
<p><a class="source-toggle" href="#"
|
164
|
-
onclick="toggleCode('
|
165
|
-
<div class="method-source-code" id="
|
164
|
+
onclick="toggleCode('M000165-source');return false;">[Source]</a></p>
|
165
|
+
<div class="method-source-code" id="M000165-source">
|
166
166
|
<pre>
|
167
167
|
<span class="ruby-comment cmt"># File lib/git/object.rb, line 17</span>
|
168
168
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">base</span>, <span class="ruby-identifier">objectish</span>)
|
@@ -177,11 +177,11 @@
|
|
177
177
|
|
178
178
|
<h3 class="section-bar">Public Instance methods</h3>
|
179
179
|
|
180
|
-
<div id="method-
|
181
|
-
<a name="
|
180
|
+
<div id="method-M000175" class="method-detail">
|
181
|
+
<a name="M000175"></a>
|
182
182
|
|
183
183
|
<div class="method-heading">
|
184
|
-
<a href="#
|
184
|
+
<a href="#M000175" class="method-signature">
|
185
185
|
<span class="method-name">archive</span><span class="method-args">(file = nil, opts = {})</span>
|
186
186
|
</a>
|
187
187
|
</div>
|
@@ -191,8 +191,8 @@
|
|
191
191
|
creates an archive of this object (tree)
|
192
192
|
</p>
|
193
193
|
<p><a class="source-toggle" href="#"
|
194
|
-
onclick="toggleCode('
|
195
|
-
<div class="method-source-code" id="
|
194
|
+
onclick="toggleCode('M000175-source');return false;">[Source]</a></p>
|
195
|
+
<div class="method-source-code" id="M000175-source">
|
196
196
|
<pre>
|
197
197
|
<span class="ruby-comment cmt"># File lib/git/object.rb, line 63</span>
|
198
198
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">archive</span>(<span class="ruby-identifier">file</span> = <span class="ruby-keyword kw">nil</span>, <span class="ruby-identifier">opts</span> = {})
|
@@ -203,19 +203,19 @@ creates an archive of this object (tree)
|
|
203
203
|
</div>
|
204
204
|
</div>
|
205
205
|
|
206
|
-
<div id="method-
|
207
|
-
<a name="
|
206
|
+
<div id="method-M000177" class="method-detail">
|
207
|
+
<a name="M000177"></a>
|
208
208
|
|
209
209
|
<div class="method-heading">
|
210
|
-
<a href="#
|
210
|
+
<a href="#M000177" class="method-signature">
|
211
211
|
<span class="method-name">blob?</span><span class="method-args">()</span>
|
212
212
|
</a>
|
213
213
|
</div>
|
214
214
|
|
215
215
|
<div class="method-description">
|
216
216
|
<p><a class="source-toggle" href="#"
|
217
|
-
onclick="toggleCode('
|
218
|
-
<div class="method-source-code" id="
|
217
|
+
onclick="toggleCode('M000177-source');return false;">[Source]</a></p>
|
218
|
+
<div class="method-source-code" id="M000177-source">
|
219
219
|
<pre>
|
220
220
|
<span class="ruby-comment cmt"># File lib/git/object.rb, line 71</span>
|
221
221
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">blob?</span>
|
@@ -226,19 +226,19 @@ creates an archive of this object (tree)
|
|
226
226
|
</div>
|
227
227
|
</div>
|
228
228
|
|
229
|
-
<div id="method-
|
230
|
-
<a name="
|
229
|
+
<div id="method-M000178" class="method-detail">
|
230
|
+
<a name="M000178"></a>
|
231
231
|
|
232
232
|
<div class="method-heading">
|
233
|
-
<a href="#
|
233
|
+
<a href="#M000178" class="method-signature">
|
234
234
|
<span class="method-name">commit?</span><span class="method-args">()</span>
|
235
235
|
</a>
|
236
236
|
</div>
|
237
237
|
|
238
238
|
<div class="method-description">
|
239
239
|
<p><a class="source-toggle" href="#"
|
240
|
-
onclick="toggleCode('
|
241
|
-
<div class="method-source-code" id="
|
240
|
+
onclick="toggleCode('M000178-source');return false;">[Source]</a></p>
|
241
|
+
<div class="method-source-code" id="M000178-source">
|
242
242
|
<pre>
|
243
243
|
<span class="ruby-comment cmt"># File lib/git/object.rb, line 75</span>
|
244
244
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">commit?</span>
|
@@ -249,11 +249,11 @@ creates an archive of this object (tree)
|
|
249
249
|
</div>
|
250
250
|
</div>
|
251
251
|
|
252
|
-
<div id="method-
|
253
|
-
<a name="
|
252
|
+
<div id="method-M000168" class="method-detail">
|
253
|
+
<a name="M000168"></a>
|
254
254
|
|
255
255
|
<div class="method-heading">
|
256
|
-
<a href="#
|
256
|
+
<a href="#M000168" class="method-signature">
|
257
257
|
<span class="method-name">contents</span><span class="method-args">()</span>
|
258
258
|
</a>
|
259
259
|
</div>
|
@@ -263,8 +263,8 @@ creates an archive of this object (tree)
|
|
263
263
|
caches the contents of this call in memory
|
264
264
|
</p>
|
265
265
|
<p><a class="source-toggle" href="#"
|
266
|
-
onclick="toggleCode('
|
267
|
-
<div class="method-source-code" id="
|
266
|
+
onclick="toggleCode('M000168-source');return false;">[Source]</a></p>
|
267
|
+
<div class="method-source-code" id="M000168-source">
|
268
268
|
<pre>
|
269
269
|
<span class="ruby-comment cmt"># File lib/git/object.rb, line 32</span>
|
270
270
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">contents</span>
|
@@ -275,19 +275,19 @@ caches the contents of this call in memory
|
|
275
275
|
</div>
|
276
276
|
</div>
|
277
277
|
|
278
|
-
<div id="method-
|
279
|
-
<a name="
|
278
|
+
<div id="method-M000169" class="method-detail">
|
279
|
+
<a name="M000169"></a>
|
280
280
|
|
281
281
|
<div class="method-heading">
|
282
|
-
<a href="#
|
282
|
+
<a href="#M000169" class="method-signature">
|
283
283
|
<span class="method-name">contents_array</span><span class="method-args">()</span>
|
284
284
|
</a>
|
285
285
|
</div>
|
286
286
|
|
287
287
|
<div class="method-description">
|
288
288
|
<p><a class="source-toggle" href="#"
|
289
|
-
onclick="toggleCode('
|
290
|
-
<div class="method-source-code" id="
|
289
|
+
onclick="toggleCode('M000169-source');return false;">[Source]</a></p>
|
290
|
+
<div class="method-source-code" id="M000169-source">
|
291
291
|
<pre>
|
292
292
|
<span class="ruby-comment cmt"># File lib/git/object.rb, line 36</span>
|
293
293
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">contents_array</span>
|
@@ -298,19 +298,19 @@ caches the contents of this call in memory
|
|
298
298
|
</div>
|
299
299
|
</div>
|
300
300
|
|
301
|
-
<div id="method-
|
302
|
-
<a name="
|
301
|
+
<div id="method-M000173" class="method-detail">
|
302
|
+
<a name="M000173"></a>
|
303
303
|
|
304
304
|
<div class="method-heading">
|
305
|
-
<a href="#
|
305
|
+
<a href="#M000173" class="method-signature">
|
306
306
|
<span class="method-name">diff</span><span class="method-args">(objectish)</span>
|
307
307
|
</a>
|
308
308
|
</div>
|
309
309
|
|
310
310
|
<div class="method-description">
|
311
311
|
<p><a class="source-toggle" href="#"
|
312
|
-
onclick="toggleCode('
|
313
|
-
<div class="method-source-code" id="
|
312
|
+
onclick="toggleCode('M000173-source');return false;">[Source]</a></p>
|
313
|
+
<div class="method-source-code" id="M000173-source">
|
314
314
|
<pre>
|
315
315
|
<span class="ruby-comment cmt"># File lib/git/object.rb, line 54</span>
|
316
316
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">diff</span>(<span class="ruby-identifier">objectish</span>)
|
@@ -321,19 +321,19 @@ caches the contents of this call in memory
|
|
321
321
|
</div>
|
322
322
|
</div>
|
323
323
|
|
324
|
-
<div id="method-
|
325
|
-
<a name="
|
324
|
+
<div id="method-M000172" class="method-detail">
|
325
|
+
<a name="M000172"></a>
|
326
326
|
|
327
327
|
<div class="method-heading">
|
328
|
-
<a href="#
|
328
|
+
<a href="#M000172" class="method-signature">
|
329
329
|
<span class="method-name">grep</span><span class="method-args">(string, path_limiter = nil, opts = {})</span>
|
330
330
|
</a>
|
331
331
|
</div>
|
332
332
|
|
333
333
|
<div class="method-description">
|
334
334
|
<p><a class="source-toggle" href="#"
|
335
|
-
onclick="toggleCode('
|
336
|
-
<div class="method-source-code" id="
|
335
|
+
onclick="toggleCode('M000172-source');return false;">[Source]</a></p>
|
336
|
+
<div class="method-source-code" id="M000172-source">
|
337
337
|
<pre>
|
338
338
|
<span class="ruby-comment cmt"># File lib/git/object.rb, line 48</span>
|
339
339
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">grep</span>(<span class="ruby-identifier">string</span>, <span class="ruby-identifier">path_limiter</span> = <span class="ruby-keyword kw">nil</span>, <span class="ruby-identifier">opts</span> = {})
|
@@ -346,19 +346,19 @@ caches the contents of this call in memory
|
|
346
346
|
</div>
|
347
347
|
</div>
|
348
348
|
|
349
|
-
<div id="method-
|
350
|
-
<a name="
|
349
|
+
<div id="method-M000174" class="method-detail">
|
350
|
+
<a name="M000174"></a>
|
351
351
|
|
352
352
|
<div class="method-heading">
|
353
|
-
<a href="#
|
353
|
+
<a href="#M000174" class="method-signature">
|
354
354
|
<span class="method-name">log</span><span class="method-args">(count = 30)</span>
|
355
355
|
</a>
|
356
356
|
</div>
|
357
357
|
|
358
358
|
<div class="method-description">
|
359
359
|
<p><a class="source-toggle" href="#"
|
360
|
-
onclick="toggleCode('
|
361
|
-
<div class="method-source-code" id="
|
360
|
+
onclick="toggleCode('M000174-source');return false;">[Source]</a></p>
|
361
|
+
<div class="method-source-code" id="M000174-source">
|
362
362
|
<pre>
|
363
363
|
<span class="ruby-comment cmt"># File lib/git/object.rb, line 58</span>
|
364
364
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">log</span>(<span class="ruby-identifier">count</span> = <span class="ruby-value">30</span>)
|
@@ -369,19 +369,19 @@ caches the contents of this call in memory
|
|
369
369
|
</div>
|
370
370
|
</div>
|
371
371
|
|
372
|
-
<div id="method-
|
373
|
-
<a name="
|
372
|
+
<div id="method-M000170" class="method-detail">
|
373
|
+
<a name="M000170"></a>
|
374
374
|
|
375
375
|
<div class="method-heading">
|
376
|
-
<a href="#
|
376
|
+
<a href="#M000170" class="method-signature">
|
377
377
|
<span class="method-name">setup</span><span class="method-args">()</span>
|
378
378
|
</a>
|
379
379
|
</div>
|
380
380
|
|
381
381
|
<div class="method-description">
|
382
382
|
<p><a class="source-toggle" href="#"
|
383
|
-
onclick="toggleCode('
|
384
|
-
<div class="method-source-code" id="
|
383
|
+
onclick="toggleCode('M000170-source');return false;">[Source]</a></p>
|
384
|
+
<div class="method-source-code" id="M000170-source">
|
385
385
|
<pre>
|
386
386
|
<span class="ruby-comment cmt"># File lib/git/object.rb, line 40</span>
|
387
387
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">setup</span>
|
@@ -392,19 +392,19 @@ caches the contents of this call in memory
|
|
392
392
|
</div>
|
393
393
|
</div>
|
394
394
|
|
395
|
-
<div id="method-
|
396
|
-
<a name="
|
395
|
+
<div id="method-M000166" class="method-detail">
|
396
|
+
<a name="M000166"></a>
|
397
397
|
|
398
398
|
<div class="method-heading">
|
399
|
-
<a href="#
|
399
|
+
<a href="#M000166" class="method-signature">
|
400
400
|
<span class="method-name">sha</span><span class="method-args">()</span>
|
401
401
|
</a>
|
402
402
|
</div>
|
403
403
|
|
404
404
|
<div class="method-description">
|
405
405
|
<p><a class="source-toggle" href="#"
|
406
|
-
onclick="toggleCode('
|
407
|
-
<div class="method-source-code" id="
|
406
|
+
onclick="toggleCode('M000166-source');return false;">[Source]</a></p>
|
407
|
+
<div class="method-source-code" id="M000166-source">
|
408
408
|
<pre>
|
409
409
|
<span class="ruby-comment cmt"># File lib/git/object.rb, line 23</span>
|
410
410
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">sha</span>
|
@@ -415,19 +415,19 @@ caches the contents of this call in memory
|
|
415
415
|
</div>
|
416
416
|
</div>
|
417
417
|
|
418
|
-
<div id="method-
|
419
|
-
<a name="
|
418
|
+
<div id="method-M000167" class="method-detail">
|
419
|
+
<a name="M000167"></a>
|
420
420
|
|
421
421
|
<div class="method-heading">
|
422
|
-
<a href="#
|
422
|
+
<a href="#M000167" class="method-signature">
|
423
423
|
<span class="method-name">size</span><span class="method-args">()</span>
|
424
424
|
</a>
|
425
425
|
</div>
|
426
426
|
|
427
427
|
<div class="method-description">
|
428
428
|
<p><a class="source-toggle" href="#"
|
429
|
-
onclick="toggleCode('
|
430
|
-
<div class="method-source-code" id="
|
429
|
+
onclick="toggleCode('M000167-source');return false;">[Source]</a></p>
|
430
|
+
<div class="method-source-code" id="M000167-source">
|
431
431
|
<pre>
|
432
432
|
<span class="ruby-comment cmt"># File lib/git/object.rb, line 27</span>
|
433
433
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">size</span>
|
@@ -438,19 +438,19 @@ caches the contents of this call in memory
|
|
438
438
|
</div>
|
439
439
|
</div>
|
440
440
|
|
441
|
-
<div id="method-
|
442
|
-
<a name="
|
441
|
+
<div id="method-M000179" class="method-detail">
|
442
|
+
<a name="M000179"></a>
|
443
443
|
|
444
444
|
<div class="method-heading">
|
445
|
-
<a href="#
|
445
|
+
<a href="#M000179" class="method-signature">
|
446
446
|
<span class="method-name">tag?</span><span class="method-args">()</span>
|
447
447
|
</a>
|
448
448
|
</div>
|
449
449
|
|
450
450
|
<div class="method-description">
|
451
451
|
<p><a class="source-toggle" href="#"
|
452
|
-
onclick="toggleCode('
|
453
|
-
<div class="method-source-code" id="
|
452
|
+
onclick="toggleCode('M000179-source');return false;">[Source]</a></p>
|
453
|
+
<div class="method-source-code" id="M000179-source">
|
454
454
|
<pre>
|
455
455
|
<span class="ruby-comment cmt"># File lib/git/object.rb, line 79</span>
|
456
456
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">tag?</span>
|
@@ -461,42 +461,42 @@ caches the contents of this call in memory
|
|
461
461
|
</div>
|
462
462
|
</div>
|
463
463
|
|
464
|
-
<div id="method-
|
465
|
-
<a name="
|
464
|
+
<div id="method-M000171" class="method-detail">
|
465
|
+
<a name="M000171"></a>
|
466
466
|
|
467
467
|
<div class="method-heading">
|
468
|
-
<a href="#
|
468
|
+
<a href="#M000171" class="method-signature">
|
469
469
|
<span class="method-name">to_s</span><span class="method-args">()</span>
|
470
470
|
</a>
|
471
471
|
</div>
|
472
472
|
|
473
473
|
<div class="method-description">
|
474
474
|
<p><a class="source-toggle" href="#"
|
475
|
-
onclick="toggleCode('
|
476
|
-
<div class="method-source-code" id="
|
475
|
+
onclick="toggleCode('M000171-source');return false;">[Source]</a></p>
|
476
|
+
<div class="method-source-code" id="M000171-source">
|
477
477
|
<pre>
|
478
478
|
<span class="ruby-comment cmt"># File lib/git/object.rb, line 44</span>
|
479
479
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">to_s</span>
|
480
|
-
<span class="ruby-
|
480
|
+
<span class="ruby-ivar">@objectish</span>
|
481
481
|
<span class="ruby-keyword kw">end</span>
|
482
482
|
</pre>
|
483
483
|
</div>
|
484
484
|
</div>
|
485
485
|
</div>
|
486
486
|
|
487
|
-
<div id="method-
|
488
|
-
<a name="
|
487
|
+
<div id="method-M000176" class="method-detail">
|
488
|
+
<a name="M000176"></a>
|
489
489
|
|
490
490
|
<div class="method-heading">
|
491
|
-
<a href="#
|
491
|
+
<a href="#M000176" class="method-signature">
|
492
492
|
<span class="method-name">tree?</span><span class="method-args">()</span>
|
493
493
|
</a>
|
494
494
|
</div>
|
495
495
|
|
496
496
|
<div class="method-description">
|
497
497
|
<p><a class="source-toggle" href="#"
|
498
|
-
onclick="toggleCode('
|
499
|
-
<div class="method-source-code" id="
|
498
|
+
onclick="toggleCode('M000176-source');return false;">[Source]</a></p>
|
499
|
+
<div class="method-source-code" id="M000176-source">
|
500
500
|
<pre>
|
501
501
|
<span class="ruby-comment cmt"># File lib/git/object.rb, line 67</span>
|
502
502
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">tree?</span>
|