ruff 1.1.0 → 1.2.0
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 +4 -4
- data/Gemfile.lock +1 -1
- data/Rakefile +3 -0
- data/docs/Ruff.html +5 -5
- data/docs/Ruff/Effect.html +3 -3
- data/docs/Ruff/Handler.html +19 -8
- data/docs/Ruff/Standard.html +4 -4
- data/docs/Ruff/Standard/CurrentTime.html +12 -12
- data/docs/Ruff/Standard/CurrentTime/Instance.html +17 -15
- data/docs/Ruff/Standard/Defer.html +15 -15
- data/docs/Ruff/Standard/Defer/Instance.html +16 -10
- data/docs/Ruff/Standard/MeasureTime.html +389 -0
- data/docs/Ruff/Standard/MeasureTime/Instance.html +499 -0
- data/docs/Ruff/Standard/State.html +49 -27
- data/docs/Ruff/Standard/State/Instance.html +49 -47
- data/docs/Ruff/Throws.html +3 -3
- data/docs/Ruff/Throws/Eff.html +3 -3
- data/docs/Ruff/Throws/Resend.html +3 -3
- data/docs/_index.html +29 -7
- data/docs/class_list.html +1 -1
- data/docs/file.README.html +3 -3
- data/docs/frames.html +1 -1
- data/docs/index.html +3 -3
- data/docs/method_list.html +74 -18
- data/docs/top-level-namespace.html +3 -3
- data/lib/ruff.rb +1 -1
- data/lib/ruff/standard.rb +2 -0
- data/lib/ruff/standard/current_time.rb +3 -2
- data/lib/ruff/standard/defer.rb +4 -1
- data/lib/ruff/standard/measure_time.rb +77 -0
- data/lib/ruff/standard/state.rb +17 -0
- data/lib/ruff/version.rb +1 -1
- data/version +1 -1
- metadata +4 -1
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Module: Ruff::Standard::State
|
8
8
|
|
9
|
-
— Ruff 1.0
|
9
|
+
— Ruff 1.1.0 Documentation
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -95,6 +95,28 @@ and the implementation of the mutable cell or so-called <em>state</em> .</p>
|
|
95
95
|
</div>
|
96
96
|
<div class="tags">
|
97
97
|
|
98
|
+
<div class="examples">
|
99
|
+
<p class="tag_title">Examples:</p>
|
100
|
+
|
101
|
+
|
102
|
+
<pre class="example code"><code><span class='id identifier rubyid_r'>r</span> <span class='op'>=</span> <span class='const'>State</span><span class='period'>.</span><span class='id identifier rubyid_with'><span class='object_link'><a href="#with-class_method" title="Ruff::Standard::State.with (method)">with</a></span></span> <span class='lbrace'>{</span>
|
103
|
+
<span class='const'>State</span><span class='period'>.</span><span class='id identifier rubyid_put'><span class='object_link'><a href="#put-class_method" title="Ruff::Standard::State.put (method)">put</a></span></span> <span class='int'>10</span>
|
104
|
+
<span class='id identifier rubyid_puts'>puts</span> <span class='const'>State</span><span class='period'>.</span><span class='id identifier rubyid_get'><span class='object_link'><a href="#get-class_method" title="Ruff::Standard::State.get (method)">get</a></span></span> <span class='comment'>#==> 10
|
105
|
+
</span> <span class='const'>State</span><span class='period'>.</span><span class='id identifier rubyid_modify'><span class='object_link'><a href="#modify-class_method" title="Ruff::Standard::State.modify (method)">modify</a></span></span> <span class='lbrace'>{</span><span class='op'>|</span><span class='id identifier rubyid_s'>s</span><span class='op'>|</span> <span class='id identifier rubyid_s'>s</span> <span class='op'>+</span> <span class='int'>20</span><span class='rbrace'>}</span>
|
106
|
+
<span class='const'>State</span><span class='period'>.</span><span class='id identifier rubyid_modify'><span class='object_link'><a href="#modify-class_method" title="Ruff::Standard::State.modify (method)">modify</a></span></span> <span class='lbrace'>{</span><span class='op'>|</span><span class='id identifier rubyid_s'>s</span><span class='op'>|</span>
|
107
|
+
<span class='id identifier rubyid_puts'>puts</span> <span class='id identifier rubyid_s'>s</span> <span class='comment'>#==> 30
|
108
|
+
</span> <span class='int'>0</span>
|
109
|
+
<span class='rbrace'>}</span>
|
110
|
+
|
111
|
+
<span class='id identifier rubyid_puts'>puts</span> <span class='const'>State</span><span class='period'>.</span><span class='id identifier rubyid_get'><span class='object_link'><a href="#get-class_method" title="Ruff::Standard::State.get (method)">get</a></span></span> <span class='comment'>#==> 0
|
112
|
+
</span>
|
113
|
+
<span class='const'>State</span><span class='period'>.</span><span class='id identifier rubyid_put'><span class='object_link'><a href="#put-class_method" title="Ruff::Standard::State.put (method)">put</a></span></span> <span class='int'>11</span>
|
114
|
+
<span class='rbrace'>}</span>
|
115
|
+
|
116
|
+
<span class='id identifier rubyid_puts'>puts</span> <span class='id identifier rubyid_r'>r</span> <span class='comment'>#==> 11</span></code></pre>
|
117
|
+
|
118
|
+
</div>
|
119
|
+
|
98
120
|
|
99
121
|
<p class="tag_title">See Also:</p>
|
100
122
|
<ul class="see">
|
@@ -310,12 +332,12 @@ and the implementation of the mutable cell or so-called <em>state</em> .</p>
|
|
310
332
|
<pre class="lines">
|
311
333
|
|
312
334
|
|
313
|
-
|
314
|
-
|
315
|
-
|
335
|
+
136
|
336
|
+
137
|
337
|
+
138</pre>
|
316
338
|
</td>
|
317
339
|
<td>
|
318
|
-
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line
|
340
|
+
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line 136</span>
|
319
341
|
|
320
342
|
<span class='kw'>def</span> <span class='id identifier rubyid_eff'>eff</span>
|
321
343
|
<span class='ivar'>@eff</span>
|
@@ -363,12 +385,12 @@ and the implementation of the mutable cell or so-called <em>state</em> .</p>
|
|
363
385
|
<pre class="lines">
|
364
386
|
|
365
387
|
|
366
|
-
|
367
|
-
|
368
|
-
|
388
|
+
109
|
389
|
+
110
|
390
|
+
111</pre>
|
369
391
|
</td>
|
370
392
|
<td>
|
371
|
-
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line
|
393
|
+
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line 109</span>
|
372
394
|
|
373
395
|
<span class='kw'>def</span> <span class='id identifier rubyid_get'>get</span>
|
374
396
|
<span class='ivar'>@inst</span><span class='period'>.</span><span class='id identifier rubyid_get'>get</span>
|
@@ -409,12 +431,12 @@ and the implementation of the mutable cell or so-called <em>state</em> .</p>
|
|
409
431
|
<pre class="lines">
|
410
432
|
|
411
433
|
|
412
|
-
|
413
|
-
|
414
|
-
|
434
|
+
114
|
435
|
+
115
|
436
|
+
116</pre>
|
415
437
|
</td>
|
416
438
|
<td>
|
417
|
-
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line
|
439
|
+
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line 114</span>
|
418
440
|
|
419
441
|
<span class='kw'>def</span> <span class='id identifier rubyid_modify'>modify</span><span class='lparen'>(</span><span class='op'>&</span><span class='id identifier rubyid_fn'>fn</span><span class='rparen'>)</span>
|
420
442
|
<span class='ivar'>@inst</span><span class='period'>.</span><span class='id identifier rubyid_modify'>modify</span><span class='lparen'>(</span><span class='op'>&</span><span class='id identifier rubyid_fn'>fn</span><span class='rparen'>)</span>
|
@@ -455,12 +477,12 @@ and the implementation of the mutable cell or so-called <em>state</em> .</p>
|
|
455
477
|
<pre class="lines">
|
456
478
|
|
457
479
|
|
458
|
-
|
459
|
-
|
460
|
-
|
480
|
+
119
|
481
|
+
120
|
482
|
+
121</pre>
|
461
483
|
</td>
|
462
484
|
<td>
|
463
|
-
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line
|
485
|
+
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line 119</span>
|
464
486
|
|
465
487
|
<span class='kw'>def</span> <span class='id identifier rubyid_put'>put</span><span class='lparen'>(</span><span class='id identifier rubyid_s'>s</span><span class='rparen'>)</span>
|
466
488
|
<span class='ivar'>@inst</span><span class='period'>.</span><span class='id identifier rubyid_put'>put</span> <span class='id identifier rubyid_s'>s</span>
|
@@ -501,12 +523,12 @@ and the implementation of the mutable cell or so-called <em>state</em> .</p>
|
|
501
523
|
<pre class="lines">
|
502
524
|
|
503
525
|
|
504
|
-
|
505
|
-
|
506
|
-
|
526
|
+
129
|
527
|
+
130
|
528
|
+
131</pre>
|
507
529
|
</td>
|
508
530
|
<td>
|
509
|
-
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line
|
531
|
+
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line 129</span>
|
510
532
|
|
511
533
|
<span class='kw'>def</span> <span class='id identifier rubyid_with'>with</span><span class='lparen'>(</span><span class='op'>&</span><span class='id identifier rubyid_task'>task</span><span class='rparen'>)</span>
|
512
534
|
<span class='ivar'>@inst</span><span class='period'>.</span><span class='id identifier rubyid_with'>with</span><span class='lparen'>(</span><span class='op'>&</span><span class='id identifier rubyid_task'>task</span><span class='rparen'>)</span>
|
@@ -547,12 +569,12 @@ and the implementation of the mutable cell or so-called <em>state</em> .</p>
|
|
547
569
|
<pre class="lines">
|
548
570
|
|
549
571
|
|
550
|
-
|
551
|
-
|
552
|
-
|
572
|
+
124
|
573
|
+
125
|
574
|
+
126</pre>
|
553
575
|
</td>
|
554
576
|
<td>
|
555
|
-
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line
|
577
|
+
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line 124</span>
|
556
578
|
|
557
579
|
<span class='kw'>def</span> <span class='id identifier rubyid_with_init'>with_init</span><span class='lparen'>(</span><span class='id identifier rubyid_init'>init</span><span class='comma'>,</span> <span class='op'>&</span><span class='id identifier rubyid_task'>task</span><span class='rparen'>)</span>
|
558
580
|
<span class='ivar'>@inst</span><span class='period'>.</span><span class='id identifier rubyid_with_init'>with_init</span> <span class='id identifier rubyid_init'>init</span><span class='comma'>,</span> <span class='op'>&</span><span class='id identifier rubyid_task'>task</span>
|
@@ -567,9 +589,9 @@ and the implementation of the mutable cell or so-called <em>state</em> .</p>
|
|
567
589
|
</div>
|
568
590
|
|
569
591
|
<div id="footer">
|
570
|
-
Generated on Fri Oct 4
|
592
|
+
Generated on Fri Oct 4 21:12:21 2019 by
|
571
593
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
572
|
-
0.9.20 (ruby-2.6.
|
594
|
+
0.9.20 (ruby-2.6.5).
|
573
595
|
</div>
|
574
596
|
|
575
597
|
</div>
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Class: Ruff::Standard::State::Instance
|
8
8
|
|
9
|
-
— Ruff 1.0
|
9
|
+
— Ruff 1.1.0 Documentation
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -318,16 +318,16 @@
|
|
318
318
|
<pre class="lines">
|
319
319
|
|
320
320
|
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
321
|
+
29
|
322
|
+
30
|
323
|
+
31
|
324
|
+
32
|
325
|
+
33
|
326
|
+
34
|
327
|
+
35</pre>
|
328
328
|
</td>
|
329
329
|
<td>
|
330
|
-
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line
|
330
|
+
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line 29</span>
|
331
331
|
|
332
332
|
<span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span>
|
333
333
|
<span class='id identifier rubyid_get'>get</span> <span class='op'>=</span> <span class='const'><span class='object_link'><a href="../../../Ruff.html" title="Ruff (module)">Ruff</a></span></span><span class='period'>.</span><span class='id identifier rubyid_instance'><span class='object_link'><a href="../../../Ruff.html#instance-class_method" title="Ruff.instance (method)">instance</a></span></span>
|
@@ -374,12 +374,12 @@ with accessing <code>#eff.get</code> and <code>#eff.modify</code> .</p>
|
|
374
374
|
<pre class="lines">
|
375
375
|
|
376
376
|
|
377
|
-
|
378
|
-
|
379
|
-
|
377
|
+
101
|
378
|
+
102
|
379
|
+
103</pre>
|
380
380
|
</td>
|
381
381
|
<td>
|
382
|
-
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line
|
382
|
+
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line 101</span>
|
383
383
|
|
384
384
|
<span class='kw'>def</span> <span class='id identifier rubyid_eff'>eff</span>
|
385
385
|
<span class='ivar'>@eff</span>
|
@@ -438,12 +438,12 @@ with accessing <code>#eff.get</code> and <code>#eff.modify</code> .</p>
|
|
438
438
|
<pre class="lines">
|
439
439
|
|
440
440
|
|
441
|
-
|
442
|
-
|
443
|
-
|
441
|
+
40
|
442
|
+
41
|
443
|
+
42</pre>
|
444
444
|
</td>
|
445
445
|
<td>
|
446
|
-
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line
|
446
|
+
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line 40</span>
|
447
447
|
|
448
448
|
<span class='kw'>def</span> <span class='id identifier rubyid_get'>get</span>
|
449
449
|
<span class='ivar'>@eff</span><span class='period'>.</span><span class='id identifier rubyid_get'>get</span><span class='period'>.</span><span class='id identifier rubyid_perform'>perform</span>
|
@@ -511,12 +511,12 @@ This function has an argument receiving the state.</p>
|
|
511
511
|
<pre class="lines">
|
512
512
|
|
513
513
|
|
514
|
-
|
515
|
-
|
516
|
-
|
514
|
+
49
|
515
|
+
50
|
516
|
+
51</pre>
|
517
517
|
</td>
|
518
518
|
<td>
|
519
|
-
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line
|
519
|
+
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line 49</span>
|
520
520
|
|
521
521
|
<span class='kw'>def</span> <span class='id identifier rubyid_modify'>modify</span><span class='lparen'>(</span><span class='op'>&</span><span class='id identifier rubyid_fn'>fn</span><span class='rparen'>)</span>
|
522
522
|
<span class='ivar'>@eff</span><span class='period'>.</span><span class='id identifier rubyid_modify'>modify</span><span class='period'>.</span><span class='id identifier rubyid_perform'>perform</span> <span class='id identifier rubyid_fn'>fn</span>
|
@@ -583,12 +583,12 @@ This function has an argument receiving the state.</p>
|
|
583
583
|
<pre class="lines">
|
584
584
|
|
585
585
|
|
586
|
-
|
587
|
-
|
588
|
-
|
586
|
+
57
|
587
|
+
58
|
588
|
+
59</pre>
|
589
589
|
</td>
|
590
590
|
<td>
|
591
|
-
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line
|
591
|
+
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line 57</span>
|
592
592
|
|
593
593
|
<span class='kw'>def</span> <span class='id identifier rubyid_put'>put</span><span class='lparen'>(</span><span class='id identifier rubyid_s'>s</span><span class='rparen'>)</span>
|
594
594
|
<span class='ivar'>@eff</span><span class='period'>.</span><span class='id identifier rubyid_modify'>modify</span><span class='period'>.</span><span class='id identifier rubyid_perform'>perform</span> <span class='tlambda'>-></span><span class='lparen'>(</span><span class='id identifier rubyid__'>_</span><span class='rparen'>)</span> <span class='tlambeg'>{</span> <span class='id identifier rubyid_s'>s</span> <span class='rbrace'>}</span>
|
@@ -661,12 +661,12 @@ But it still has the possibility to invoke effects(<code>e</code>).</p>
|
|
661
661
|
<pre class="lines">
|
662
662
|
|
663
663
|
|
664
|
-
|
665
|
-
|
666
|
-
|
664
|
+
95
|
665
|
+
96
|
666
|
+
97</pre>
|
667
667
|
</td>
|
668
668
|
<td>
|
669
|
-
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line
|
669
|
+
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line 95</span>
|
670
670
|
|
671
671
|
<span class='kw'>def</span> <span class='id identifier rubyid_with'>with</span><span class='lparen'>(</span><span class='op'>&</span><span class='id identifier rubyid_th'>th</span><span class='rparen'>)</span>
|
672
672
|
<span class='id identifier rubyid_with_init'>with_init</span><span class='lparen'>(</span><span class='kw'>nil</span><span class='comma'>,</span> <span class='op'>&</span><span class='id identifier rubyid_th'>th</span><span class='rparen'>)</span>
|
@@ -754,30 +754,32 @@ But it still has the possibility to invoke effects(<code>e</code>).</p>
|
|
754
754
|
<pre class="lines">
|
755
755
|
|
756
756
|
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
757
|
+
71
|
758
|
+
72
|
759
|
+
73
|
760
|
+
74
|
761
|
+
75
|
762
|
+
76
|
763
|
+
77
|
764
|
+
78
|
765
|
+
79
|
766
|
+
80
|
767
|
+
81
|
768
|
+
82
|
769
|
+
83
|
770
|
+
84
|
771
|
+
85</pre>
|
771
772
|
</td>
|
772
773
|
<td>
|
773
|
-
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line
|
774
|
+
<pre class="code"><span class="info file"># File 'lib/ruff/standard/state.rb', line 71</span>
|
774
775
|
|
775
776
|
<span class='kw'>def</span> <span class='id identifier rubyid_with_init'>with_init</span><span class='lparen'>(</span><span class='id identifier rubyid_init'>init</span><span class='comma'>,</span> <span class='op'>&</span><span class='id identifier rubyid_th'>th</span><span class='rparen'>)</span>
|
776
777
|
<span class='comment'># not a parameter passing style, or so-called *pure* implementation,
|
777
778
|
</span> <span class='comment'># just using mutable assignment
|
778
779
|
</span> <span class='id identifier rubyid_state'>state</span> <span class='op'>=</span> <span class='id identifier rubyid_init'>init</span>
|
779
780
|
|
780
|
-
<span class='
|
781
|
+
<span class='comment'># The handler *closes* `state` variable so it should be created every time.
|
782
|
+
</span> <span class='const'><span class='object_link'><a href="../../../Ruff.html" title="Ruff (module)">Ruff</a></span></span><span class='period'>.</span><span class='id identifier rubyid_handler'><span class='object_link'><a href="../../../Ruff.html#handler-class_method" title="Ruff.handler (method)">handler</a></span></span>
|
781
783
|
<span class='period'>.</span><span class='id identifier rubyid_on'>on</span><span class='lparen'>(</span><span class='ivar'>@eff</span><span class='period'>.</span><span class='id identifier rubyid_modify'>modify</span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_k'>k</span><span class='comma'>,</span> <span class='id identifier rubyid_fn'>fn</span><span class='op'>|</span>
|
782
784
|
<span class='id identifier rubyid_state'>state</span> <span class='op'>=</span> <span class='id identifier rubyid_fn'>fn</span><span class='lbracket'>[</span><span class='id identifier rubyid_state'>state</span><span class='rbracket'>]</span>
|
783
785
|
<span class='id identifier rubyid_k'>k</span><span class='lbracket'>[</span><span class='kw'>nil</span><span class='rbracket'>]</span>
|
@@ -796,9 +798,9 @@ But it still has the possibility to invoke effects(<code>e</code>).</p>
|
|
796
798
|
</div>
|
797
799
|
|
798
800
|
<div id="footer">
|
799
|
-
Generated on Fri Oct 4
|
801
|
+
Generated on Fri Oct 4 21:12:21 2019 by
|
800
802
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
801
|
-
0.9.20 (ruby-2.6.
|
803
|
+
0.9.20 (ruby-2.6.5).
|
802
804
|
</div>
|
803
805
|
|
804
806
|
</div>
|
data/docs/Ruff/Throws.html
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Module: Ruff::Throws
|
8
8
|
|
9
|
-
— Ruff 1.0
|
9
|
+
— Ruff 1.1.0 Documentation
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -110,9 +110,9 @@
|
|
110
110
|
</div>
|
111
111
|
|
112
112
|
<div id="footer">
|
113
|
-
Generated on Fri Oct 4
|
113
|
+
Generated on Fri Oct 4 21:12:21 2019 by
|
114
114
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
115
|
-
0.9.20 (ruby-2.6.
|
115
|
+
0.9.20 (ruby-2.6.5).
|
116
116
|
</div>
|
117
117
|
|
118
118
|
</div>
|
data/docs/Ruff/Throws/Eff.html
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Class: Ruff::Throws::Eff
|
8
8
|
|
9
|
-
— Ruff 1.0
|
9
|
+
— Ruff 1.1.0 Documentation
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -355,9 +355,9 @@
|
|
355
355
|
</div>
|
356
356
|
|
357
357
|
<div id="footer">
|
358
|
-
Generated on Fri Oct 4
|
358
|
+
Generated on Fri Oct 4 21:12:21 2019 by
|
359
359
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
360
|
-
0.9.20 (ruby-2.6.
|
360
|
+
0.9.20 (ruby-2.6.5).
|
361
361
|
</div>
|
362
362
|
|
363
363
|
</div>
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Class: Ruff::Throws::Resend
|
8
8
|
|
9
|
-
— Ruff 1.0
|
9
|
+
— Ruff 1.1.0 Documentation
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -355,9 +355,9 @@
|
|
355
355
|
</div>
|
356
356
|
|
357
357
|
<div id="footer">
|
358
|
-
Generated on Fri Oct 4
|
358
|
+
Generated on Fri Oct 4 21:12:21 2019 by
|
359
359
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
360
|
-
0.9.20 (ruby-2.6.
|
360
|
+
0.9.20 (ruby-2.6.5).
|
361
361
|
</div>
|
362
362
|
|
363
363
|
</div>
|
data/docs/_index.html
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
<meta charset="utf-8">
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
6
|
<title>
|
7
|
-
Ruff 1.0
|
7
|
+
Ruff 1.1.0 Documentation
|
8
8
|
|
9
9
|
</title>
|
10
10
|
|
@@ -52,7 +52,7 @@
|
|
52
52
|
<div class="clear"></div>
|
53
53
|
</div>
|
54
54
|
|
55
|
-
<div id="content"><h1 class="noborder title">Ruff 1.0
|
55
|
+
<div id="content"><h1 class="noborder title">Ruff 1.1.0 Documentation</h1>
|
56
56
|
<div id="listing">
|
57
57
|
<h1 class="alphaindex">Alphabetic Index</h1>
|
58
58
|
|
@@ -161,6 +161,13 @@
|
|
161
161
|
|
162
162
|
</li>
|
163
163
|
|
164
|
+
<li>
|
165
|
+
<span class='object_link'><a href="Ruff/Standard/MeasureTime/Instance.html" title="Ruff::Standard::MeasureTime::Instance (class)">Instance</a></span>
|
166
|
+
|
167
|
+
<small>(Ruff::Standard::MeasureTime)</small>
|
168
|
+
|
169
|
+
</li>
|
170
|
+
|
164
171
|
<li>
|
165
172
|
<span class='object_link'><a href="Ruff/Standard/State/Instance.html" title="Ruff::Standard::State::Instance (class)">Instance</a></span>
|
166
173
|
|
@@ -172,6 +179,21 @@
|
|
172
179
|
</ul>
|
173
180
|
|
174
181
|
|
182
|
+
<ul id="alpha_M" class="alpha">
|
183
|
+
<li class="letter">M</li>
|
184
|
+
<ul>
|
185
|
+
|
186
|
+
<li>
|
187
|
+
<span class='object_link'><a href="Ruff/Standard/MeasureTime.html" title="Ruff::Standard::MeasureTime (module)">MeasureTime</a></span>
|
188
|
+
|
189
|
+
<small>(Ruff::Standard)</small>
|
190
|
+
|
191
|
+
</li>
|
192
|
+
|
193
|
+
</ul>
|
194
|
+
</ul>
|
195
|
+
|
196
|
+
|
175
197
|
<ul id="alpha_R" class="alpha">
|
176
198
|
<li class="letter">R</li>
|
177
199
|
<ul>
|
@@ -192,6 +214,9 @@
|
|
192
214
|
</ul>
|
193
215
|
|
194
216
|
|
217
|
+
</td><td valign='top' width="33%">
|
218
|
+
|
219
|
+
|
195
220
|
<ul id="alpha_S" class="alpha">
|
196
221
|
<li class="letter">S</li>
|
197
222
|
<ul>
|
@@ -214,9 +239,6 @@
|
|
214
239
|
</ul>
|
215
240
|
|
216
241
|
|
217
|
-
</td><td valign='top' width="33%">
|
218
|
-
|
219
|
-
|
220
242
|
<ul id="alpha_T" class="alpha">
|
221
243
|
<li class="letter">T</li>
|
222
244
|
<ul>
|
@@ -240,9 +262,9 @@
|
|
240
262
|
</div>
|
241
263
|
|
242
264
|
<div id="footer">
|
243
|
-
Generated on Fri Oct 4
|
265
|
+
Generated on Fri Oct 4 21:12:21 2019 by
|
244
266
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
245
|
-
0.9.20 (ruby-2.6.
|
267
|
+
0.9.20 (ruby-2.6.5).
|
246
268
|
</div>
|
247
269
|
|
248
270
|
</div>
|