smart_diff 0.0.1 → 0.0.3
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.
- checksums.yaml +7 -0
- data/Example.html +506 -0
- data/README.md +5 -5
- data/doc/Htmlize.html +927 -250
- data/doc/SmartDiff.html +188 -37
- data/doc/Tag.html +132 -29
- data/doc/Utils.html +247 -40
- data/doc/_index.html +1 -1
- data/doc/file.README.html +13 -8
- data/doc/index.html +13 -8
- data/doc/top-level-namespace.html +1 -1
- data/{foo.rb-bar.rb.html → example/foo.rb-bar.rb.html} +3 -3
- data/lib/smart_diff/htmlize.rb +124 -0
- data/lib/smart_diff/utils.rb +40 -0
- data/lib/smart_diff.rb +21 -0
- data/spec/smart_diff/htmlize_spec.rb +1 -1
- metadata +6 -16
data/doc/SmartDiff.html
CHANGED
@@ -257,7 +257,7 @@
|
|
257
257
|
<li class="public ">
|
258
258
|
<span class="summary_signature">
|
259
259
|
|
260
|
-
<a href="#diff-instance_method" title="#diff (instance method)">- (
|
260
|
+
<a href="#diff-instance_method" title="#diff (instance method)">- (java.util.ArrayList) <strong>diff</strong> </a>
|
261
261
|
|
262
262
|
|
263
263
|
|
@@ -271,7 +271,9 @@
|
|
271
271
|
|
272
272
|
|
273
273
|
|
274
|
-
<span class="summary_desc"><div class='inline'
|
274
|
+
<span class="summary_desc"><div class='inline'>
|
275
|
+
<p>Create a diff of the two AST objects.</p>
|
276
|
+
</div></span>
|
275
277
|
|
276
278
|
</li>
|
277
279
|
|
@@ -306,7 +308,7 @@ on AST generated by JRubyParser.</p>
|
|
306
308
|
<li class="public ">
|
307
309
|
<span class="summary_signature">
|
308
310
|
|
309
|
-
<a href="#parse-instance_method" title="#parse (instance method)">- (
|
311
|
+
<a href="#parse-instance_method" title="#parse (instance method)">- (org.jrubyparser.Node) <strong>parse</strong>(code_to_parse, file_name) </a>
|
310
312
|
|
311
313
|
|
312
314
|
|
@@ -320,7 +322,9 @@ on AST generated by JRubyParser.</p>
|
|
320
322
|
|
321
323
|
|
322
324
|
|
323
|
-
<span class="summary_desc"><div class='inline'
|
325
|
+
<span class="summary_desc"><div class='inline'>
|
326
|
+
<p>Parse the source into an abstract syntax tree.</p>
|
327
|
+
</div></span>
|
324
328
|
|
325
329
|
</li>
|
326
330
|
|
@@ -328,7 +332,7 @@ on AST generated by JRubyParser.</p>
|
|
328
332
|
<li class="public ">
|
329
333
|
<span class="summary_signature">
|
330
334
|
|
331
|
-
<a href="#read-instance_method" title="#read (instance method)">- (
|
335
|
+
<a href="#read-instance_method" title="#read (instance method)">- (String) <strong>read</strong>(file_name) </a>
|
332
336
|
|
333
337
|
|
334
338
|
|
@@ -342,7 +346,9 @@ on AST generated by JRubyParser.</p>
|
|
342
346
|
|
343
347
|
|
344
348
|
|
345
|
-
<span class="summary_desc"><div class='inline'
|
349
|
+
<span class="summary_desc"><div class='inline'>
|
350
|
+
<p>Read the source code into a string.</p>
|
351
|
+
</div></span>
|
346
352
|
|
347
353
|
</li>
|
348
354
|
|
@@ -665,31 +671,62 @@ on AST generated by JRubyParser.</p>
|
|
665
671
|
<div class="method_details first">
|
666
672
|
<h3 class="signature first" id="diff-instance_method">
|
667
673
|
|
668
|
-
- (<tt>
|
674
|
+
- (<tt>java.util.ArrayList</tt>) <strong>diff</strong>
|
675
|
+
|
676
|
+
|
669
677
|
|
670
678
|
|
671
679
|
|
680
|
+
</h3><div class="docstring">
|
681
|
+
<div class="discussion">
|
682
|
+
|
683
|
+
<p>Create a diff of the two AST objects.</p>
|
684
|
+
|
685
|
+
<p>org.jrubyparser.DeepDiff objects.</p>
|
672
686
|
|
687
|
+
|
688
|
+
</div>
|
689
|
+
</div>
|
690
|
+
<div class="tags">
|
673
691
|
|
674
|
-
|
692
|
+
<p class="tag_title">Returns:</p>
|
693
|
+
<ul class="return">
|
694
|
+
|
695
|
+
<li>
|
696
|
+
|
697
|
+
|
698
|
+
<span class='type'>(<tt>java.util.ArrayList</tt>)</span>
|
699
|
+
|
700
|
+
|
701
|
+
|
702
|
+
—
|
703
|
+
<div class='inline'>
|
704
|
+
<p>An ArrayList containing</p>
|
705
|
+
</div>
|
706
|
+
|
707
|
+
</li>
|
708
|
+
|
709
|
+
</ul>
|
710
|
+
|
711
|
+
</div><table class="source_code">
|
675
712
|
<tr>
|
676
713
|
<td>
|
677
714
|
<pre class="lines">
|
678
715
|
|
679
716
|
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
717
|
+
59
|
718
|
+
60
|
719
|
+
61
|
720
|
+
62
|
721
|
+
63
|
722
|
+
64
|
723
|
+
65
|
724
|
+
66
|
725
|
+
67
|
726
|
+
68</pre>
|
690
727
|
</td>
|
691
728
|
<td>
|
692
|
-
<pre class="code"><span class="info file"># File 'lib/smart_diff.rb', line
|
729
|
+
<pre class="code"><span class="info file"># File 'lib/smart_diff.rb', line 59</span>
|
693
730
|
|
694
731
|
<span class='kw'>def</span> <span class='id identifier rubyid_diff'>diff</span><span class='lparen'>(</span><span class='rparen'>)</span>
|
695
732
|
<span class='ivar'>@code_one</span> <span class='op'>=</span> <span class='id identifier rubyid_read'>read</span><span class='lparen'>(</span><span class='ivar'>@file_one</span><span class='rparen'>)</span>
|
@@ -709,24 +746,89 @@ on AST generated by JRubyParser.</p>
|
|
709
746
|
<div class="method_details ">
|
710
747
|
<h3 class="signature " id="parse-instance_method">
|
711
748
|
|
712
|
-
- (<tt>
|
749
|
+
- (<tt>org.jrubyparser.Node</tt>) <strong>parse</strong>(code_to_parse, file_name)
|
750
|
+
|
751
|
+
|
713
752
|
|
714
753
|
|
715
754
|
|
755
|
+
</h3><div class="docstring">
|
756
|
+
<div class="discussion">
|
757
|
+
|
758
|
+
<p>Parse the source into an abstract syntax tree. AST.</p>
|
716
759
|
|
760
|
+
|
761
|
+
</div>
|
762
|
+
</div>
|
763
|
+
<div class="tags">
|
764
|
+
<p class="tag_title">Parameters:</p>
|
765
|
+
<ul class="param">
|
717
766
|
|
718
|
-
|
767
|
+
<li>
|
768
|
+
|
769
|
+
<span class='name'>code_to_parse</span>
|
770
|
+
|
771
|
+
|
772
|
+
<span class='type'>(<tt>String</tt>)</span>
|
773
|
+
|
774
|
+
|
775
|
+
|
776
|
+
—
|
777
|
+
<div class='inline'>
|
778
|
+
<p>Ruby source code.</p>
|
779
|
+
</div>
|
780
|
+
|
781
|
+
</li>
|
782
|
+
|
783
|
+
<li>
|
784
|
+
|
785
|
+
<span class='name'>file_name</span>
|
786
|
+
|
787
|
+
|
788
|
+
<span class='type'>(<tt>String</tt>)</span>
|
789
|
+
|
790
|
+
|
791
|
+
|
792
|
+
—
|
793
|
+
<div class='inline'>
|
794
|
+
<p>The path to the file containing code_to_parse</p>
|
795
|
+
</div>
|
796
|
+
|
797
|
+
</li>
|
798
|
+
|
799
|
+
</ul>
|
800
|
+
|
801
|
+
<p class="tag_title">Returns:</p>
|
802
|
+
<ul class="return">
|
803
|
+
|
804
|
+
<li>
|
805
|
+
|
806
|
+
|
807
|
+
<span class='type'>(<tt>org.jrubyparser.Node</tt>)</span>
|
808
|
+
|
809
|
+
|
810
|
+
|
811
|
+
—
|
812
|
+
<div class='inline'>
|
813
|
+
<p>A Node object representing the code as an</p>
|
814
|
+
</div>
|
815
|
+
|
816
|
+
</li>
|
817
|
+
|
818
|
+
</ul>
|
819
|
+
|
820
|
+
</div><table class="source_code">
|
719
821
|
<tr>
|
720
822
|
<td>
|
721
823
|
<pre class="lines">
|
722
824
|
|
723
825
|
|
724
|
-
|
725
|
-
|
726
|
-
|
826
|
+
49
|
827
|
+
50
|
828
|
+
51</pre>
|
727
829
|
</td>
|
728
830
|
<td>
|
729
|
-
<pre class="code"><span class="info file"># File 'lib/smart_diff.rb', line
|
831
|
+
<pre class="code"><span class="info file"># File 'lib/smart_diff.rb', line 49</span>
|
730
832
|
|
731
833
|
<span class='kw'>def</span> <span class='id identifier rubyid_parse'>parse</span><span class='lparen'>(</span><span class='id identifier rubyid_code_to_parse'>code_to_parse</span><span class='comma'>,</span> <span class='id identifier rubyid_file_name'>file_name</span><span class='rparen'>)</span>
|
732
834
|
<span class='const'>JRubyParser</span><span class='period'>.</span><span class='id identifier rubyid_parse'>parse</span><span class='lparen'>(</span><span class='id identifier rubyid_code_to_parse'>code_to_parse</span><span class='comma'>,</span> <span class='lbrace'>{</span> <span class='symbol'>:filename</span> <span class='op'>=></span> <span class='id identifier rubyid_file_name'>file_name</span> <span class='rbrace'>}</span><span class='rparen'>)</span>
|
@@ -739,29 +841,78 @@ on AST generated by JRubyParser.</p>
|
|
739
841
|
<div class="method_details ">
|
740
842
|
<h3 class="signature " id="read-instance_method">
|
741
843
|
|
742
|
-
- (<tt>
|
844
|
+
- (<tt>String</tt>) <strong>read</strong>(file_name)
|
743
845
|
|
744
846
|
|
745
847
|
|
746
848
|
|
747
849
|
|
748
|
-
</h3><
|
850
|
+
</h3><div class="docstring">
|
851
|
+
<div class="discussion">
|
852
|
+
|
853
|
+
<p>Read the source code into a string.</p>
|
854
|
+
|
855
|
+
|
856
|
+
</div>
|
857
|
+
</div>
|
858
|
+
<div class="tags">
|
859
|
+
<p class="tag_title">Parameters:</p>
|
860
|
+
<ul class="param">
|
861
|
+
|
862
|
+
<li>
|
863
|
+
|
864
|
+
<span class='name'>file_name</span>
|
865
|
+
|
866
|
+
|
867
|
+
<span class='type'>(<tt>String</tt>)</span>
|
868
|
+
|
869
|
+
|
870
|
+
|
871
|
+
—
|
872
|
+
<div class='inline'>
|
873
|
+
<p>the path to a file containing ruby source</p>
|
874
|
+
</div>
|
875
|
+
|
876
|
+
</li>
|
877
|
+
|
878
|
+
</ul>
|
879
|
+
|
880
|
+
<p class="tag_title">Returns:</p>
|
881
|
+
<ul class="return">
|
882
|
+
|
883
|
+
<li>
|
884
|
+
|
885
|
+
|
886
|
+
<span class='type'>(<tt>String</tt>)</span>
|
887
|
+
|
888
|
+
|
889
|
+
|
890
|
+
—
|
891
|
+
<div class='inline'>
|
892
|
+
<p>The code read in from the file path passed in.</p>
|
893
|
+
</div>
|
894
|
+
|
895
|
+
</li>
|
896
|
+
|
897
|
+
</ul>
|
898
|
+
|
899
|
+
</div><table class="source_code">
|
749
900
|
<tr>
|
750
901
|
<td>
|
751
902
|
<pre class="lines">
|
752
903
|
|
753
904
|
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
905
|
+
32
|
906
|
+
33
|
907
|
+
34
|
908
|
+
35
|
909
|
+
36
|
910
|
+
37
|
911
|
+
38
|
912
|
+
39</pre>
|
762
913
|
</td>
|
763
914
|
<td>
|
764
|
-
<pre class="code"><span class="info file"># File 'lib/smart_diff.rb', line
|
915
|
+
<pre class="code"><span class="info file"># File 'lib/smart_diff.rb', line 32</span>
|
765
916
|
|
766
917
|
<span class='kw'>def</span> <span class='id identifier rubyid_read'>read</span><span class='lparen'>(</span><span class='id identifier rubyid_file_name'>file_name</span><span class='rparen'>)</span>
|
767
918
|
<span class='id identifier rubyid_path'>path</span> <span class='op'>=</span> <span class='const'>Pathname</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span><span class='lparen'>(</span><span class='id identifier rubyid_file_name'>file_name</span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_expand_path'>expand_path</span>
|
@@ -781,7 +932,7 @@ on AST generated by JRubyParser.</p>
|
|
781
932
|
</div>
|
782
933
|
|
783
934
|
<div id="footer">
|
784
|
-
Generated on
|
935
|
+
Generated on Mon Sep 16 03:40:01 2013 by
|
785
936
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
786
937
|
0.8.6.1 (ruby-2.0.0).
|
787
938
|
</div>
|
data/doc/Tag.html
CHANGED
@@ -99,7 +99,23 @@
|
|
99
99
|
</dl>
|
100
100
|
<div class="clear"></div>
|
101
101
|
|
102
|
+
<h2>Overview</h2><div class="docstring">
|
103
|
+
<div class="discussion">
|
104
|
+
|
105
|
+
<p>A Tag wrapping an element in an HTML file. It contains information about
|
106
|
+
the node wrapped inside it such as the start and end offset. The
|
107
|
+
<code>tag</code> attr contains the actual HTML, and includes information
|
108
|
+
used to style the nodes based on whether its an insertion, deletion or
|
109
|
+
modification. Matching modifications are wrapped in anchor tags so they can
|
110
|
+
be linked to their matches.</p>
|
111
|
+
|
112
|
+
|
113
|
+
</div>
|
114
|
+
</div>
|
115
|
+
<div class="tags">
|
116
|
+
|
102
117
|
|
118
|
+
</div>
|
103
119
|
|
104
120
|
|
105
121
|
|
@@ -220,7 +236,7 @@
|
|
220
236
|
|
221
237
|
|
222
238
|
<span class="summary_desc"><div class='inline'>
|
223
|
-
<p>
|
239
|
+
<p>Construct a new tag.</p>
|
224
240
|
</div></span>
|
225
241
|
|
226
242
|
</li>
|
@@ -229,7 +245,7 @@
|
|
229
245
|
<li class="public ">
|
230
246
|
<span class="summary_signature">
|
231
247
|
|
232
|
-
<a href="#to_s-instance_method" title="#to_s (instance method)">- (
|
248
|
+
<a href="#to_s-instance_method" title="#to_s (instance method)">- (String) <strong>to_s</strong> </a>
|
233
249
|
|
234
250
|
|
235
251
|
|
@@ -243,7 +259,9 @@
|
|
243
259
|
|
244
260
|
|
245
261
|
|
246
|
-
<span class="summary_desc"><div class='inline'
|
262
|
+
<span class="summary_desc"><div class='inline'>
|
263
|
+
<p>String representation of the Tag object.</p>
|
264
|
+
</div></span>
|
247
265
|
|
248
266
|
</li>
|
249
267
|
|
@@ -266,13 +284,69 @@
|
|
266
284
|
</h3><div class="docstring">
|
267
285
|
<div class="discussion">
|
268
286
|
|
269
|
-
<p>
|
287
|
+
<p>Construct a new tag.</p>
|
288
|
+
|
289
|
+
<p>The end offset of the node if it is a closing tag. for a closing tag.</p>
|
270
290
|
|
271
291
|
|
272
292
|
</div>
|
273
293
|
</div>
|
274
294
|
<div class="tags">
|
295
|
+
<p class="tag_title">Parameters:</p>
|
296
|
+
<ul class="param">
|
275
297
|
|
298
|
+
<li>
|
299
|
+
|
300
|
+
<span class='name'>tag</span>
|
301
|
+
|
302
|
+
|
303
|
+
<span class='type'>(<tt>String</tt>)</span>
|
304
|
+
|
305
|
+
|
306
|
+
|
307
|
+
—
|
308
|
+
<div class='inline'>
|
309
|
+
<p>An HTML tag.</p>
|
310
|
+
</div>
|
311
|
+
|
312
|
+
</li>
|
313
|
+
|
314
|
+
<li>
|
315
|
+
|
316
|
+
<span class='name'>idx</span>
|
317
|
+
|
318
|
+
|
319
|
+
<span class='type'>(<tt>Fixnum</tt>)</span>
|
320
|
+
|
321
|
+
|
322
|
+
|
323
|
+
—
|
324
|
+
<div class='inline'>
|
325
|
+
<p>The start of the node's offset for an opening tag,</p>
|
326
|
+
</div>
|
327
|
+
|
328
|
+
</li>
|
329
|
+
|
330
|
+
<li>
|
331
|
+
|
332
|
+
<span class='name'>start</span>
|
333
|
+
|
334
|
+
|
335
|
+
<span class='type'>(<tt>Fixnum</tt>)</span>
|
336
|
+
|
337
|
+
|
338
|
+
<em class="default">(defaults to: <tt>-1)</tt>)</em>
|
339
|
+
|
340
|
+
|
341
|
+
—
|
342
|
+
<div class='inline'>
|
343
|
+
<p>Left -1 for an open tag, the node's start offset</p>
|
344
|
+
</div>
|
345
|
+
|
346
|
+
</li>
|
347
|
+
|
348
|
+
</ul>
|
349
|
+
|
276
350
|
|
277
351
|
</div><table class="source_code">
|
278
352
|
<tr>
|
@@ -280,14 +354,14 @@
|
|
280
354
|
<pre class="lines">
|
281
355
|
|
282
356
|
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
357
|
+
29
|
358
|
+
30
|
359
|
+
31
|
360
|
+
32
|
361
|
+
33</pre>
|
288
362
|
</td>
|
289
363
|
<td>
|
290
|
-
<pre class="code"><span class="info file"># File 'lib/smart_diff/htmlize.rb', line
|
364
|
+
<pre class="code"><span class="info file"># File 'lib/smart_diff/htmlize.rb', line 29</span>
|
291
365
|
|
292
366
|
<span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='lparen'>(</span><span class='id identifier rubyid_tag'>tag</span><span class='comma'>,</span> <span class='id identifier rubyid_idx'>idx</span><span class='comma'>,</span> <span class='id identifier rubyid_start'>start</span><span class='op'>=</span><span class='op'>-</span><span class='int'>1</span><span class='rparen'>)</span>
|
293
367
|
<span class='ivar'>@tag</span> <span class='op'>=</span> <span class='id identifier rubyid_tag'>tag</span>
|
@@ -332,12 +406,12 @@
|
|
332
406
|
<pre class="lines">
|
333
407
|
|
334
408
|
|
335
|
-
|
336
|
-
|
337
|
-
|
409
|
+
16
|
410
|
+
17
|
411
|
+
18</pre>
|
338
412
|
</td>
|
339
413
|
<td>
|
340
|
-
<pre class="code"><span class="info file"># File 'lib/smart_diff/htmlize.rb', line
|
414
|
+
<pre class="code"><span class="info file"># File 'lib/smart_diff/htmlize.rb', line 16</span>
|
341
415
|
|
342
416
|
<span class='kw'>def</span> <span class='id identifier rubyid_idx'>idx</span>
|
343
417
|
<span class='ivar'>@idx</span>
|
@@ -375,12 +449,12 @@
|
|
375
449
|
<pre class="lines">
|
376
450
|
|
377
451
|
|
378
|
-
|
379
|
-
|
380
|
-
|
452
|
+
16
|
453
|
+
17
|
454
|
+
18</pre>
|
381
455
|
</td>
|
382
456
|
<td>
|
383
|
-
<pre class="code"><span class="info file"># File 'lib/smart_diff/htmlize.rb', line
|
457
|
+
<pre class="code"><span class="info file"># File 'lib/smart_diff/htmlize.rb', line 16</span>
|
384
458
|
|
385
459
|
<span class='kw'>def</span> <span class='id identifier rubyid_start'>start</span>
|
386
460
|
<span class='ivar'>@start</span>
|
@@ -418,12 +492,12 @@
|
|
418
492
|
<pre class="lines">
|
419
493
|
|
420
494
|
|
421
|
-
|
422
|
-
|
423
|
-
|
495
|
+
16
|
496
|
+
17
|
497
|
+
18</pre>
|
424
498
|
</td>
|
425
499
|
<td>
|
426
|
-
<pre class="code"><span class="info file"># File 'lib/smart_diff/htmlize.rb', line
|
500
|
+
<pre class="code"><span class="info file"># File 'lib/smart_diff/htmlize.rb', line 16</span>
|
427
501
|
|
428
502
|
<span class='kw'>def</span> <span class='id identifier rubyid_tag'>tag</span>
|
429
503
|
<span class='ivar'>@tag</span>
|
@@ -443,24 +517,53 @@
|
|
443
517
|
<div class="method_details first">
|
444
518
|
<h3 class="signature first" id="to_s-instance_method">
|
445
519
|
|
446
|
-
- (<tt>
|
520
|
+
- (<tt>String</tt>) <strong>to_s</strong>
|
521
|
+
|
522
|
+
|
447
523
|
|
448
524
|
|
449
525
|
|
526
|
+
</h3><div class="docstring">
|
527
|
+
<div class="discussion">
|
528
|
+
|
529
|
+
<p>String representation of the Tag object.</p>
|
450
530
|
|
531
|
+
|
532
|
+
</div>
|
533
|
+
</div>
|
534
|
+
<div class="tags">
|
451
535
|
|
452
|
-
|
536
|
+
<p class="tag_title">Returns:</p>
|
537
|
+
<ul class="return">
|
538
|
+
|
539
|
+
<li>
|
540
|
+
|
541
|
+
|
542
|
+
<span class='type'>(<tt>String</tt>)</span>
|
543
|
+
|
544
|
+
|
545
|
+
|
546
|
+
—
|
547
|
+
<div class='inline'>
|
548
|
+
<p>Tag as string.</p>
|
549
|
+
</div>
|
550
|
+
|
551
|
+
</li>
|
552
|
+
|
553
|
+
</ul>
|
554
|
+
|
555
|
+
</div><table class="source_code">
|
453
556
|
<tr>
|
454
557
|
<td>
|
455
558
|
<pre class="lines">
|
456
559
|
|
457
560
|
|
458
|
-
|
459
|
-
|
460
|
-
|
561
|
+
40
|
562
|
+
41
|
563
|
+
42</pre>
|
461
564
|
</td>
|
462
565
|
<td>
|
463
|
-
<pre class="code"><span class="info file"># File 'lib/smart_diff/htmlize.rb', line
|
566
|
+
<pre class="code"><span class="info file"># File 'lib/smart_diff/htmlize.rb', line 40</span>
|
464
567
|
|
465
568
|
<span class='kw'>def</span> <span class='id identifier rubyid_to_s'>to_s</span>
|
466
569
|
<span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>tag: </span><span class='embexpr_beg'>#{</span><span class='ivar'>@tag</span><span class='embexpr_end'>}</span><span class='tstring_content'>, idx: </span><span class='embexpr_beg'>#{</span><span class='ivar'>@idx</span><span class='embexpr_end'>}</span><span class='tstring_content'> start: </span><span class='embexpr_beg'>#{</span><span class='ivar'>@start</span><span class='embexpr_end'>}</span><span class='tstring_end'>"</span></span>
|
@@ -475,7 +578,7 @@
|
|
475
578
|
</div>
|
476
579
|
|
477
580
|
<div id="footer">
|
478
|
-
Generated on
|
581
|
+
Generated on Mon Sep 16 03:40:01 2013 by
|
479
582
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
480
583
|
0.8.6.1 (ruby-2.0.0).
|
481
584
|
</div>
|