cw 0.0.11 → 0.0.12
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/.gitignore +26 -3
- data/.yardoc/checksums +2 -2
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/audio/dash.wav +0 -0
- data/audio/dot.wav +0 -0
- data/audio/e_space.wav +0 -0
- data/audio/space.wav +0 -0
- data/cw.gemspec +1 -1
- data/doc/Alphabet.html +1 -1
- data/doc/AudioPlayer.html +1 -1
- data/doc/Book.html +1 -1
- data/doc/BookDetails.html +1 -1
- data/doc/CW.html +299 -125
- data/doc/CWThreads.html +1 -1
- data/doc/Cl.html +1 -1
- data/doc/CurrentWord.html +1 -1
- data/doc/CwDsl.html +1 -1
- data/doc/CwEncoding.html +1 -1
- data/doc/FileDetails.html +1 -1
- data/doc/KeyInput.html +1 -1
- data/doc/MonitorKeys.html +1 -1
- data/doc/Numbers.html +1 -1
- data/doc/Params.html +1 -1
- data/doc/Print.html +1 -1
- data/doc/Print/ProgressPrint.html +1 -1
- data/doc/Process.html +1 -1
- data/doc/Progress.html +1 -1
- data/doc/Randomize.html +1 -1
- data/doc/RepeatWord.html +1 -1
- data/doc/Rss.html +28 -26
- data/doc/Sentence.html +1 -1
- data/doc/Spoken.html +1 -1
- data/doc/Str.html +1 -1
- data/doc/Stream.html +1 -1
- data/doc/TestLetters.html +1 -1
- data/doc/TestWords.html +1 -1
- data/doc/Tester.html +1 -1
- data/doc/Timing.html +1 -1
- data/doc/ToneGenerator.html +1 -1
- data/doc/Voice.html +1 -1
- data/doc/Words.html +1 -1
- data/doc/_index.html +1 -1
- data/doc/file.README.html +14 -5
- data/doc/index.html +14 -5
- data/doc/method_list.html +289 -295
- data/doc/monitor.html +1 -1
- data/doc/top-level-namespace.html +1 -1
- data/lib/cw.rb +38 -13
- data/lib/cw/cw_dsl.rb +2 -0
- data/lib/cw/rss.rb +7 -6
- data/lib/cw/str.rb +18 -17
- data/test/test_cw.rb +5 -3
- metadata +2 -1
data/doc/file.README.html
CHANGED
@@ -80,8 +80,14 @@ characters and words typed in real-time.</p>
|
|
80
80
|
<span class='id identifier rubyid_gem'>gem</span> <span class='id identifier rubyid_install'>install</span> <span class='id identifier rubyid_cw'>cw</span>
|
81
81
|
<span class='id identifier rubyid_ruby'>ruby</span> <span class='id identifier rubyid_example'>example</span><span class='period'>.</span><span class='id identifier rubyid_rb'>rb</span>
|
82
82
|
</code></pre>
|
83
|
+
|
84
|
+
<h1 id="label-Run+tests">Run tests</h1>
|
85
|
+
|
86
|
+
<pre class="code ruby"><code class="ruby">
|
87
|
+
gem install --dev cw
|
88
|
+
ruby test/test_cw.rb</code></pre>
|
83
89
|
<ul><li>
|
84
|
-
<p>Note: Currently only tested on OS X
|
90
|
+
<p>Note: Currently only tested on OS X, and Ruby v2.0.0 and greater.</p>
|
85
91
|
</li></ul>
|
86
92
|
|
87
93
|
<pre class="code ruby"><code class="ruby">
|
@@ -90,13 +96,16 @@ characters and words typed in real-time.</p>
|
|
90
96
|
<span class='id identifier rubyid_require'>require</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>cw</span><span class='tstring_end'>'</span></span>
|
91
97
|
|
92
98
|
<span class='const'>CW</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span> <span class='kw'>do</span>
|
93
|
-
<span class='id identifier
|
99
|
+
<span class='id identifier rubyid_wpm'>wpm</span> <span class='int'>18</span>
|
100
|
+
<span class='id identifier rubyid_comment'>comment</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>read book (1 sentence)</span><span class='tstring_end'>'</span></span>
|
94
101
|
<span class='id identifier rubyid_play_book'>play_book</span><span class='lparen'>(</span><span class='label'>sentences:</span> <span class='int'>1</span><span class='rparen'>)</span>
|
95
102
|
<span class='kw'>end</span>
|
96
103
|
|
97
104
|
<span class='const'>CW</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span> <span class='kw'>do</span>
|
98
|
-
<span class='id identifier
|
99
|
-
<span class='id identifier
|
105
|
+
<span class='id identifier rubyid_wpm'>wpm</span> <span class='int'>18</span>
|
106
|
+
<span class='id identifier rubyid_ewpm'>ewpm</span> <span class='int'>12</span>
|
107
|
+
<span class='id identifier rubyid_comment'>comment</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>read book (2 minutes)</span><span class='tstring_end'>'</span></span>
|
108
|
+
<span class='id identifier rubyid_play_book'>play_book</span><span class='lparen'>(</span><span class='label'>duration:</span> <span class='int'>2</span><span class='rparen'>)</span>
|
100
109
|
<span class='kw'>end</span>
|
101
110
|
|
102
111
|
<span class='const'>CW</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span> <span class='kw'>do</span>
|
@@ -139,7 +148,7 @@ words_no_shorter_than / no_shorter_than</p>
|
|
139
148
|
</div></div>
|
140
149
|
|
141
150
|
<div id="footer">
|
142
|
-
Generated on
|
151
|
+
Generated on Wed May 25 15:00:24 2016 by
|
143
152
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
144
153
|
0.8.7.6 (ruby-2.2.0).
|
145
154
|
</div>
|
data/doc/index.html
CHANGED
@@ -80,8 +80,14 @@ characters and words typed in real-time.</p>
|
|
80
80
|
<span class='id identifier rubyid_gem'>gem</span> <span class='id identifier rubyid_install'>install</span> <span class='id identifier rubyid_cw'>cw</span>
|
81
81
|
<span class='id identifier rubyid_ruby'>ruby</span> <span class='id identifier rubyid_example'>example</span><span class='period'>.</span><span class='id identifier rubyid_rb'>rb</span>
|
82
82
|
</code></pre>
|
83
|
+
|
84
|
+
<h1 id="label-Run+tests">Run tests</h1>
|
85
|
+
|
86
|
+
<pre class="code ruby"><code class="ruby">
|
87
|
+
gem install --dev cw
|
88
|
+
ruby test/test_cw.rb</code></pre>
|
83
89
|
<ul><li>
|
84
|
-
<p>Note: Currently only tested on OS X
|
90
|
+
<p>Note: Currently only tested on OS X, and Ruby v2.0.0 and greater.</p>
|
85
91
|
</li></ul>
|
86
92
|
|
87
93
|
<pre class="code ruby"><code class="ruby">
|
@@ -90,13 +96,16 @@ characters and words typed in real-time.</p>
|
|
90
96
|
<span class='id identifier rubyid_require'>require</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>cw</span><span class='tstring_end'>'</span></span>
|
91
97
|
|
92
98
|
<span class='const'>CW</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span> <span class='kw'>do</span>
|
93
|
-
<span class='id identifier
|
99
|
+
<span class='id identifier rubyid_wpm'>wpm</span> <span class='int'>18</span>
|
100
|
+
<span class='id identifier rubyid_comment'>comment</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>read book (1 sentence)</span><span class='tstring_end'>'</span></span>
|
94
101
|
<span class='id identifier rubyid_play_book'>play_book</span><span class='lparen'>(</span><span class='label'>sentences:</span> <span class='int'>1</span><span class='rparen'>)</span>
|
95
102
|
<span class='kw'>end</span>
|
96
103
|
|
97
104
|
<span class='const'>CW</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span> <span class='kw'>do</span>
|
98
|
-
<span class='id identifier
|
99
|
-
<span class='id identifier
|
105
|
+
<span class='id identifier rubyid_wpm'>wpm</span> <span class='int'>18</span>
|
106
|
+
<span class='id identifier rubyid_ewpm'>ewpm</span> <span class='int'>12</span>
|
107
|
+
<span class='id identifier rubyid_comment'>comment</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>read book (2 minutes)</span><span class='tstring_end'>'</span></span>
|
108
|
+
<span class='id identifier rubyid_play_book'>play_book</span><span class='lparen'>(</span><span class='label'>duration:</span> <span class='int'>2</span><span class='rparen'>)</span>
|
100
109
|
<span class='kw'>end</span>
|
101
110
|
|
102
111
|
<span class='const'>CW</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span> <span class='kw'>do</span>
|
@@ -139,7 +148,7 @@ words_no_shorter_than / no_shorter_than</p>
|
|
139
148
|
</div></div>
|
140
149
|
|
141
150
|
<div id="footer">
|
142
|
-
Generated on
|
151
|
+
Generated on Wed May 25 15:00:24 2016 by
|
143
152
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
144
153
|
0.8.7.6 (ruby-2.2.0).
|
145
154
|
</div>
|
data/doc/method_list.html
CHANGED
@@ -70,14 +70,14 @@
|
|
70
70
|
|
71
71
|
|
72
72
|
<li class="r2 ">
|
73
|
-
<span class='object_link'><a href="
|
74
|
-
<small>
|
73
|
+
<span class='object_link'><a href="Book.html#add_space-instance_method" title="Book#add_space (method)">#add_space</a></span>
|
74
|
+
<small>Book</small>
|
75
75
|
</li>
|
76
76
|
|
77
77
|
|
78
78
|
<li class="r1 ">
|
79
|
-
<span class='object_link'><a href="
|
80
|
-
<small>
|
79
|
+
<span class='object_link'><a href="Tester.html#add_space-instance_method" title="Tester#add_space (method)">#add_space</a></span>
|
80
|
+
<small>Tester</small>
|
81
81
|
</li>
|
82
82
|
|
83
83
|
|
@@ -88,14 +88,14 @@
|
|
88
88
|
|
89
89
|
|
90
90
|
<li class="r1 ">
|
91
|
-
<span class='object_link'><a href="
|
92
|
-
<small>
|
91
|
+
<span class='object_link'><a href="Words.html#all-instance_method" title="Words#all (method)">#all</a></span>
|
92
|
+
<small>Words</small>
|
93
93
|
</li>
|
94
94
|
|
95
95
|
|
96
96
|
<li class="r2 ">
|
97
|
-
<span class='object_link'><a href="
|
98
|
-
<small>
|
97
|
+
<span class='object_link'><a href="Sentence.html#all-instance_method" title="Sentence#all (method)">#all</a></span>
|
98
|
+
<small>Sentence</small>
|
99
99
|
</li>
|
100
100
|
|
101
101
|
|
@@ -106,14 +106,14 @@
|
|
106
106
|
|
107
107
|
|
108
108
|
<li class="r2 ">
|
109
|
-
<span class='object_link'><a href="
|
110
|
-
<small>
|
109
|
+
<span class='object_link'><a href="CwDsl.html#alphabet-instance_method" title="CwDsl#alphabet (method)">#alphabet</a></span>
|
110
|
+
<small>CwDsl</small>
|
111
111
|
</li>
|
112
112
|
|
113
113
|
|
114
114
|
<li class="r1 ">
|
115
|
-
<span class='object_link'><a href="
|
116
|
-
<small>
|
115
|
+
<span class='object_link'><a href="Words.html#alphabet-instance_method" title="Words#alphabet (method)">#alphabet</a></span>
|
116
|
+
<small>Words</small>
|
117
117
|
</li>
|
118
118
|
|
119
119
|
|
@@ -184,14 +184,14 @@
|
|
184
184
|
|
185
185
|
|
186
186
|
<li class="r1 ">
|
187
|
-
<span class='object_link'><a href="
|
188
|
-
<small>
|
187
|
+
<span class='object_link'><a href="Tester.html#audio_stop-instance_method" title="Tester#audio_stop (method)">#audio_stop</a></span>
|
188
|
+
<small>Tester</small>
|
189
189
|
</li>
|
190
190
|
|
191
191
|
|
192
192
|
<li class="r2 ">
|
193
|
-
<span class='object_link'><a href="
|
194
|
-
<small>
|
193
|
+
<span class='object_link'><a href="Book.html#audio_stop-instance_method" title="Book#audio_stop (method)">#audio_stop</a></span>
|
194
|
+
<small>Book</small>
|
195
195
|
</li>
|
196
196
|
|
197
197
|
|
@@ -208,14 +208,14 @@
|
|
208
208
|
|
209
209
|
|
210
210
|
<li class="r1 ">
|
211
|
-
<span class='object_link'><a href="
|
212
|
-
<small>
|
211
|
+
<span class='object_link'><a href="CwDsl.html#beginning_with-instance_method" title="CwDsl#beginning_with (method)">#beginning_with</a></span>
|
212
|
+
<small>CwDsl</small>
|
213
213
|
</li>
|
214
214
|
|
215
215
|
|
216
216
|
<li class="r2 ">
|
217
|
-
<span class='object_link'><a href="
|
218
|
-
<small>
|
217
|
+
<span class='object_link'><a href="Words.html#beginning_with-instance_method" title="Words#beginning_with (method)">#beginning_with</a></span>
|
218
|
+
<small>Words</small>
|
219
219
|
</li>
|
220
220
|
|
221
221
|
|
@@ -226,14 +226,14 @@
|
|
226
226
|
|
227
227
|
|
228
228
|
<li class="r2 ">
|
229
|
-
<span class='object_link'><a href="
|
230
|
-
<small>
|
229
|
+
<span class='object_link'><a href="Book.html#book_location-instance_method" title="Book#book_location (method)">#book_location</a></span>
|
230
|
+
<small>Book</small>
|
231
231
|
</li>
|
232
232
|
|
233
233
|
|
234
234
|
<li class="r1 ">
|
235
|
-
<span class='object_link'><a href="
|
236
|
-
<small>
|
235
|
+
<span class='object_link'><a href="BookDetails.html#book_location-instance_method" title="BookDetails#book_location (method)">#book_location</a></span>
|
236
|
+
<small>BookDetails</small>
|
237
237
|
</li>
|
238
238
|
|
239
239
|
|
@@ -250,26 +250,26 @@
|
|
250
250
|
|
251
251
|
|
252
252
|
<li class="r2 ">
|
253
|
-
<span class='object_link'><a href="
|
254
|
-
<small>
|
253
|
+
<span class='object_link'><a href="TestWords.html#build_word_maybe-instance_method" title="TestWords#build_word_maybe (method)">#build_word_maybe</a></span>
|
254
|
+
<small>TestWords</small>
|
255
255
|
</li>
|
256
256
|
|
257
257
|
|
258
258
|
<li class="r1 ">
|
259
|
-
<span class='object_link'><a href="
|
260
|
-
<small>
|
259
|
+
<span class='object_link'><a href="TestLetters.html#build_word_maybe-instance_method" title="TestLetters#build_word_maybe (method)">#build_word_maybe</a></span>
|
260
|
+
<small>TestLetters</small>
|
261
261
|
</li>
|
262
262
|
|
263
263
|
|
264
264
|
<li class="r2 ">
|
265
|
-
<span class='object_link'><a href="
|
266
|
-
<small>
|
265
|
+
<span class='object_link'><a href="Book.html#build_word_maybe-instance_method" title="Book#build_word_maybe (method)">#build_word_maybe</a></span>
|
266
|
+
<small>Book</small>
|
267
267
|
</li>
|
268
268
|
|
269
269
|
|
270
270
|
<li class="r1 ">
|
271
|
-
<span class='object_link'><a href="
|
272
|
-
<small>
|
271
|
+
<span class='object_link'><a href="RepeatWord.html#build_word_maybe-instance_method" title="RepeatWord#build_word_maybe (method)">#build_word_maybe</a></span>
|
272
|
+
<small>RepeatWord</small>
|
273
273
|
</li>
|
274
274
|
|
275
275
|
|
@@ -562,14 +562,14 @@
|
|
562
562
|
|
563
563
|
|
564
564
|
<li class="r2 ">
|
565
|
-
<span class='object_link'><a href="
|
566
|
-
<small>
|
565
|
+
<span class='object_link'><a href="ToneGenerator.html#convert_words-instance_method" title="ToneGenerator#convert_words (method)">#convert_words</a></span>
|
566
|
+
<small>ToneGenerator</small>
|
567
567
|
</li>
|
568
568
|
|
569
569
|
|
570
570
|
<li class="r1 ">
|
571
|
-
<span class='object_link'><a href="
|
572
|
-
<small>
|
571
|
+
<span class='object_link'><a href="AudioPlayer.html#convert_words-instance_method" title="AudioPlayer#convert_words (method)">#convert_words</a></span>
|
572
|
+
<small>AudioPlayer</small>
|
573
573
|
</li>
|
574
574
|
|
575
575
|
|
@@ -580,14 +580,14 @@
|
|
580
580
|
|
581
581
|
|
582
582
|
<li class="r1 ">
|
583
|
-
<span class='object_link'><a href="
|
584
|
-
<small>
|
583
|
+
<span class='object_link'><a href="Words.html#count-instance_method" title="Words#count (method)">#count</a></span>
|
584
|
+
<small>Words</small>
|
585
585
|
</li>
|
586
586
|
|
587
587
|
|
588
588
|
<li class="r2 ">
|
589
|
-
<span class='object_link'><a href="
|
590
|
-
<small>
|
589
|
+
<span class='object_link'><a href="Stream.html#count-instance_method" title="Stream#count (method)">#count</a></span>
|
590
|
+
<small>Stream</small>
|
591
591
|
</li>
|
592
592
|
|
593
593
|
|
@@ -622,14 +622,14 @@
|
|
622
622
|
|
623
623
|
|
624
624
|
<li class="r2 ">
|
625
|
-
<span class='object_link'><a href="
|
626
|
-
<small>
|
625
|
+
<span class='object_link'><a href="CurrentWord.html#current_word-instance_method" title="CurrentWord#current_word (method)">#current_word</a></span>
|
626
|
+
<small>CurrentWord</small>
|
627
627
|
</li>
|
628
628
|
|
629
629
|
|
630
630
|
<li class="r1 ">
|
631
|
-
<span class='object_link'><a href="
|
632
|
-
<small>
|
631
|
+
<span class='object_link'><a href="Tester.html#current_word-instance_method" title="Tester#current_word (method)">#current_word</a></span>
|
632
|
+
<small>Tester</small>
|
633
633
|
</li>
|
634
634
|
|
635
635
|
|
@@ -640,32 +640,32 @@
|
|
640
640
|
|
641
641
|
|
642
642
|
<li class="r1 ">
|
643
|
-
<span class='object_link'><a href="
|
644
|
-
<small>
|
643
|
+
<span class='object_link'><a href="Rss.html#cw_chars-instance_method" title="Rss#cw_chars (method)">#cw_chars</a></span>
|
644
|
+
<small>Rss</small>
|
645
645
|
</li>
|
646
646
|
|
647
647
|
|
648
648
|
<li class="r2 ">
|
649
|
-
<span class='object_link'><a href="
|
650
|
-
<small>
|
649
|
+
<span class='object_link'><a href="CurrentWord.html#cw_chars-instance_method" title="CurrentWord#cw_chars (method)">#cw_chars</a></span>
|
650
|
+
<small>CurrentWord</small>
|
651
651
|
</li>
|
652
652
|
|
653
653
|
|
654
654
|
<li class="r1 ">
|
655
|
-
<span class='object_link'><a href="
|
656
|
-
<small>
|
655
|
+
<span class='object_link'><a href="Sentence.html#cw_chars-instance_method" title="Sentence#cw_chars (method)">#cw_chars</a></span>
|
656
|
+
<small>Sentence</small>
|
657
657
|
</li>
|
658
658
|
|
659
659
|
|
660
660
|
<li class="r2 ">
|
661
|
-
<span class='object_link'><a href="
|
662
|
-
<small>
|
661
|
+
<span class='object_link'><a href="Timing.html#cw_encoding-instance_method" title="Timing#cw_encoding (method)">#cw_encoding</a></span>
|
662
|
+
<small>Timing</small>
|
663
663
|
</li>
|
664
664
|
|
665
665
|
|
666
666
|
<li class="r1 ">
|
667
|
-
<span class='object_link'><a href="
|
668
|
-
<small>
|
667
|
+
<span class='object_link'><a href="ToneGenerator.html#cw_encoding-instance_method" title="ToneGenerator#cw_encoding (method)">#cw_encoding</a></span>
|
668
|
+
<small>ToneGenerator</small>
|
669
669
|
</li>
|
670
670
|
|
671
671
|
|
@@ -706,14 +706,14 @@
|
|
706
706
|
|
707
707
|
|
708
708
|
<li class="r2 ">
|
709
|
-
<span class='object_link'><a href="
|
710
|
-
<small>
|
709
|
+
<span class='object_link'><a href="Words.html#double_words-instance_method" title="Words#double_words (method)">#double_words</a></span>
|
710
|
+
<small>Words</small>
|
711
711
|
</li>
|
712
712
|
|
713
713
|
|
714
714
|
<li class="r1 ">
|
715
|
-
<span class='object_link'><a href="
|
716
|
-
<small>
|
715
|
+
<span class='object_link'><a href="RepeatWord.html#double_words-instance_method" title="RepeatWord#double_words (method)">#double_words</a></span>
|
716
|
+
<small>RepeatWord</small>
|
717
717
|
</li>
|
718
718
|
|
719
719
|
|
@@ -874,26 +874,26 @@
|
|
874
874
|
|
875
875
|
|
876
876
|
<li class="r2 ">
|
877
|
-
<span class='object_link'><a href="
|
878
|
-
<small>
|
877
|
+
<span class='object_link'><a href="Numbers.html#generate-instance_method" title="Numbers#generate (method)">#generate</a></span>
|
878
|
+
<small>Numbers</small>
|
879
879
|
</li>
|
880
880
|
|
881
881
|
|
882
882
|
<li class="r1 ">
|
883
|
-
<span class='object_link'><a href="
|
884
|
-
<small>
|
883
|
+
<span class='object_link'><a href="Randomize.html#generate-instance_method" title="Randomize#generate (method)">#generate</a></span>
|
884
|
+
<small>Randomize</small>
|
885
885
|
</li>
|
886
886
|
|
887
887
|
|
888
888
|
<li class="r2 ">
|
889
|
-
<span class='object_link'><a href="
|
890
|
-
<small>
|
889
|
+
<span class='object_link'><a href="Alphabet.html#generate-instance_method" title="Alphabet#generate (method)">#generate</a></span>
|
890
|
+
<small>Alphabet</small>
|
891
891
|
</li>
|
892
892
|
|
893
893
|
|
894
894
|
<li class="r1 ">
|
895
|
-
<span class='object_link'><a href="
|
896
|
-
<small>
|
895
|
+
<span class='object_link'><a href="ToneGenerator.html#generate-instance_method" title="ToneGenerator#generate (method)">#generate</a></span>
|
896
|
+
<small>ToneGenerator</small>
|
897
897
|
</li>
|
898
898
|
|
899
899
|
|
@@ -1000,14 +1000,14 @@
|
|
1000
1000
|
|
1001
1001
|
|
1002
1002
|
<li class="r1 ">
|
1003
|
-
<span class='object_link'><a href="
|
1004
|
-
<small>
|
1003
|
+
<span class='object_link'><a href="Words.html#including-instance_method" title="Words#including (method)">#including</a></span>
|
1004
|
+
<small>Words</small>
|
1005
1005
|
</li>
|
1006
1006
|
|
1007
1007
|
|
1008
1008
|
<li class="r2 ">
|
1009
|
-
<span class='object_link'><a href="
|
1010
|
-
<small>
|
1009
|
+
<span class='object_link'><a href="CwDsl.html#including-instance_method" title="CwDsl#including (method)">#including</a></span>
|
1010
|
+
<small>CwDsl</small>
|
1011
1011
|
</li>
|
1012
1012
|
|
1013
1013
|
|
@@ -1036,14 +1036,14 @@
|
|
1036
1036
|
|
1037
1037
|
|
1038
1038
|
<li class="r1 ">
|
1039
|
-
<span class='object_link'><a href="
|
1040
|
-
<small>
|
1039
|
+
<span class='object_link'><a href="Timing.html#init_char_timer-instance_method" title="Timing#init_char_timer (method)">#init_char_timer</a></span>
|
1040
|
+
<small>Timing</small>
|
1041
1041
|
</li>
|
1042
1042
|
|
1043
1043
|
|
1044
1044
|
<li class="r2 ">
|
1045
|
-
<span class='object_link'><a href="
|
1046
|
-
<small>
|
1045
|
+
<span class='object_link'><a href="Tester.html#init_char_timer-instance_method" title="Tester#init_char_timer (method)">#init_char_timer</a></span>
|
1046
|
+
<small>Tester</small>
|
1047
1047
|
</li>
|
1048
1048
|
|
1049
1049
|
|
@@ -1066,26 +1066,26 @@
|
|
1066
1066
|
|
1067
1067
|
|
1068
1068
|
<li class="r2 ">
|
1069
|
-
<span class='object_link'><a href="
|
1070
|
-
<small>
|
1069
|
+
<span class='object_link'><a href="Book.html#initialize-instance_method" title="Book#initialize (method)">#initialize</a></span>
|
1070
|
+
<small>Book</small>
|
1071
1071
|
</li>
|
1072
1072
|
|
1073
1073
|
|
1074
1074
|
<li class="r1 ">
|
1075
|
-
<span class='object_link'><a href="
|
1076
|
-
<small>
|
1075
|
+
<span class='object_link'><a href="Alphabet.html#initialize-instance_method" title="Alphabet#initialize (method)">#initialize</a></span>
|
1076
|
+
<small>Alphabet</small>
|
1077
1077
|
</li>
|
1078
1078
|
|
1079
1079
|
|
1080
1080
|
<li class="r2 ">
|
1081
|
-
<span class='object_link'><a href="
|
1082
|
-
<small>
|
1081
|
+
<span class='object_link'><a href="BookDetails.html#initialize-instance_method" title="BookDetails#initialize (method)">#initialize</a></span>
|
1082
|
+
<small>BookDetails</small>
|
1083
1083
|
</li>
|
1084
1084
|
|
1085
1085
|
|
1086
1086
|
<li class="r1 ">
|
1087
|
-
<span class='object_link'><a href="
|
1088
|
-
<small>
|
1087
|
+
<span class='object_link'><a href="Print.html#initialize-instance_method" title="Print#initialize (method)">#initialize</a></span>
|
1088
|
+
<small>Print</small>
|
1089
1089
|
</li>
|
1090
1090
|
|
1091
1091
|
|
@@ -1096,62 +1096,62 @@
|
|
1096
1096
|
|
1097
1097
|
|
1098
1098
|
<li class="r1 ">
|
1099
|
-
<span class='object_link'><a href="
|
1100
|
-
<small>
|
1099
|
+
<span class='object_link'><a href="TestLetters.html#initialize-instance_method" title="TestLetters#initialize (method)">#initialize</a></span>
|
1100
|
+
<small>TestLetters</small>
|
1101
1101
|
</li>
|
1102
1102
|
|
1103
1103
|
|
1104
1104
|
<li class="r2 ">
|
1105
|
-
<span class='object_link'><a href="
|
1106
|
-
<small>
|
1105
|
+
<span class='object_link'><a href="Progress.html#initialize-instance_method" title="Progress#initialize (method)">#initialize</a></span>
|
1106
|
+
<small>Progress</small>
|
1107
1107
|
</li>
|
1108
1108
|
|
1109
1109
|
|
1110
1110
|
<li class="r1 ">
|
1111
|
-
<span class='object_link'><a href="
|
1112
|
-
<small>
|
1111
|
+
<span class='object_link'><a href="Spoken.html#initialize-instance_method" title="Spoken#initialize (method)">#initialize</a></span>
|
1112
|
+
<small>Spoken</small>
|
1113
1113
|
</li>
|
1114
1114
|
|
1115
1115
|
|
1116
1116
|
<li class="r2 ">
|
1117
|
-
<span class='object_link'><a href="
|
1118
|
-
<small>
|
1117
|
+
<span class='object_link'><a href="ToneGenerator.html#initialize-instance_method" title="ToneGenerator#initialize (method)">#initialize</a></span>
|
1118
|
+
<small>ToneGenerator</small>
|
1119
1119
|
</li>
|
1120
1120
|
|
1121
1121
|
|
1122
1122
|
<li class="r1 ">
|
1123
|
-
<span class='object_link'><a href="
|
1124
|
-
<small>
|
1123
|
+
<span class='object_link'><a href="MonitorKeys.html#initialize-instance_method" title="MonitorKeys#initialize (method)">#initialize</a></span>
|
1124
|
+
<small>MonitorKeys</small>
|
1125
1125
|
</li>
|
1126
1126
|
|
1127
1127
|
|
1128
1128
|
<li class="r2 ">
|
1129
|
-
<span class='object_link'><a href="
|
1130
|
-
<small>
|
1129
|
+
<span class='object_link'><a href="FileDetails.html#initialize-instance_method" title="FileDetails#initialize (method)">#initialize</a></span>
|
1130
|
+
<small>FileDetails</small>
|
1131
1131
|
</li>
|
1132
1132
|
|
1133
1133
|
|
1134
1134
|
<li class="r1 ">
|
1135
|
-
<span class='object_link'><a href="
|
1136
|
-
<small>
|
1135
|
+
<span class='object_link'><a href="TestWords.html#initialize-instance_method" title="TestWords#initialize (method)">#initialize</a></span>
|
1136
|
+
<small>TestWords</small>
|
1137
1137
|
</li>
|
1138
1138
|
|
1139
1139
|
|
1140
1140
|
<li class="r2 ">
|
1141
|
-
<span class='object_link'><a href="
|
1142
|
-
<small>
|
1141
|
+
<span class='object_link'><a href="Numbers.html#initialize-instance_method" title="Numbers#initialize (method)">#initialize</a></span>
|
1142
|
+
<small>Numbers</small>
|
1143
1143
|
</li>
|
1144
1144
|
|
1145
1145
|
|
1146
1146
|
<li class="r1 ">
|
1147
|
-
<span class='object_link'><a href="
|
1148
|
-
<small>
|
1147
|
+
<span class='object_link'><a href="Str.html#initialize-instance_method" title="Str#initialize (method)">#initialize</a></span>
|
1148
|
+
<small>Str</small>
|
1149
1149
|
</li>
|
1150
1150
|
|
1151
1151
|
|
1152
1152
|
<li class="r2 ">
|
1153
|
-
<span class='object_link'><a href="
|
1154
|
-
<small>
|
1153
|
+
<span class='object_link'><a href="Stream.html#initialize-instance_method" title="Stream#initialize (method)">#initialize</a></span>
|
1154
|
+
<small>Stream</small>
|
1155
1155
|
</li>
|
1156
1156
|
|
1157
1157
|
|
@@ -1162,56 +1162,56 @@
|
|
1162
1162
|
|
1163
1163
|
|
1164
1164
|
<li class="r2 ">
|
1165
|
-
<span class='object_link'><a href="
|
1166
|
-
<small>
|
1165
|
+
<span class='object_link'><a href="CWThreads.html#initialize-instance_method" title="CWThreads#initialize (method)">#initialize</a></span>
|
1166
|
+
<small>CWThreads</small>
|
1167
1167
|
</li>
|
1168
1168
|
|
1169
1169
|
|
1170
1170
|
<li class="r1 ">
|
1171
|
-
<span class='object_link'><a href="
|
1172
|
-
<small>
|
1171
|
+
<span class='object_link'><a href="CurrentWord.html#initialize-instance_method" title="CurrentWord#initialize (method)">#initialize</a></span>
|
1172
|
+
<small>CurrentWord</small>
|
1173
1173
|
</li>
|
1174
1174
|
|
1175
1175
|
|
1176
1176
|
<li class="r2 ">
|
1177
|
-
<span class='object_link'><a href="
|
1178
|
-
<small>
|
1177
|
+
<span class='object_link'><a href="Voice.html#initialize-instance_method" title="Voice#initialize (method)">#initialize</a></span>
|
1178
|
+
<small>Voice</small>
|
1179
1179
|
</li>
|
1180
1180
|
|
1181
1181
|
|
1182
1182
|
<li class="r1 ">
|
1183
|
-
<span class='object_link'><a href="
|
1184
|
-
<small>
|
1183
|
+
<span class='object_link'><a href="CwDsl.html#initialize-instance_method" title="CwDsl#initialize (method)">#initialize</a></span>
|
1184
|
+
<small>CwDsl</small>
|
1185
1185
|
</li>
|
1186
1186
|
|
1187
1187
|
|
1188
1188
|
<li class="r2 ">
|
1189
|
-
<span class='object_link'><a href="
|
1190
|
-
<small>
|
1189
|
+
<span class='object_link'><a href="CW.html#initialize-instance_method" title="CW#initialize (method)">#initialize</a></span>
|
1190
|
+
<small>CW</small>
|
1191
1191
|
</li>
|
1192
1192
|
|
1193
1193
|
|
1194
1194
|
<li class="r1 ">
|
1195
|
-
<span class='object_link'><a href="
|
1196
|
-
<small>
|
1195
|
+
<span class='object_link'><a href="RepeatWord.html#initialize-instance_method" title="RepeatWord#initialize (method)">#initialize</a></span>
|
1196
|
+
<small>RepeatWord</small>
|
1197
1197
|
</li>
|
1198
1198
|
|
1199
1199
|
|
1200
1200
|
<li class="r2 ">
|
1201
|
-
<span class='object_link'><a href="
|
1202
|
-
<small>
|
1201
|
+
<span class='object_link'><a href="Randomize.html#initialize-instance_method" title="Randomize#initialize (method)">#initialize</a></span>
|
1202
|
+
<small>Randomize</small>
|
1203
1203
|
</li>
|
1204
1204
|
|
1205
1205
|
|
1206
1206
|
<li class="r1 ">
|
1207
|
-
<span class='object_link'><a href="
|
1208
|
-
<small>
|
1207
|
+
<span class='object_link'><a href="KeyInput.html#initialize-instance_method" title="KeyInput#initialize (method)">#initialize</a></span>
|
1208
|
+
<small>KeyInput</small>
|
1209
1209
|
</li>
|
1210
1210
|
|
1211
1211
|
|
1212
1212
|
<li class="r2 ">
|
1213
|
-
<span class='object_link'><a href="
|
1214
|
-
<small>
|
1213
|
+
<span class='object_link'><a href="Timing.html#initialize-instance_method" title="Timing#initialize (method)">#initialize</a></span>
|
1214
|
+
<small>Timing</small>
|
1215
1215
|
</li>
|
1216
1216
|
|
1217
1217
|
|
@@ -1234,14 +1234,14 @@
|
|
1234
1234
|
|
1235
1235
|
|
1236
1236
|
<li class="r2 ">
|
1237
|
-
<span class='object_link'><a href="
|
1238
|
-
<small>
|
1237
|
+
<span class='object_link'><a href="Tester.html#is_relevant_char%3F-instance_method" title="Tester#is_relevant_char? (method)">#is_relevant_char?</a></span>
|
1238
|
+
<small>Tester</small>
|
1239
1239
|
</li>
|
1240
1240
|
|
1241
1241
|
|
1242
1242
|
<li class="r1 ">
|
1243
|
-
<span class='object_link'><a href="
|
1244
|
-
<small>
|
1243
|
+
<span class='object_link'><a href="KeyInput.html#is_relevant_char%3F-instance_method" title="KeyInput#is_relevant_char? (method)">#is_relevant_char?</a></span>
|
1244
|
+
<small>KeyInput</small>
|
1245
1245
|
</li>
|
1246
1246
|
|
1247
1247
|
|
@@ -1252,14 +1252,14 @@
|
|
1252
1252
|
|
1253
1253
|
|
1254
1254
|
<li class="r1 ">
|
1255
|
-
<span class='object_link'><a href="
|
1256
|
-
<small>
|
1255
|
+
<span class='object_link'><a href="MonitorKeys.html#key_input-instance_method" title="MonitorKeys#key_input (method)">#key_input</a></span>
|
1256
|
+
<small>MonitorKeys</small>
|
1257
1257
|
</li>
|
1258
1258
|
|
1259
1259
|
|
1260
1260
|
<li class="r2 ">
|
1261
|
-
<span class='object_link'><a href="
|
1262
|
-
<small>
|
1261
|
+
<span class='object_link'><a href="Tester.html#key_input-instance_method" title="Tester#key_input (method)">#key_input</a></span>
|
1262
|
+
<small>Tester</small>
|
1263
1263
|
</li>
|
1264
1264
|
|
1265
1265
|
|
@@ -1402,26 +1402,26 @@
|
|
1402
1402
|
|
1403
1403
|
|
1404
1404
|
<li class="r2 ">
|
1405
|
-
<span class='object_link'><a href="
|
1406
|
-
<small>
|
1405
|
+
<span class='object_link'><a href="MonitorKeys.html#monitor_keys-instance_method" title="MonitorKeys#monitor_keys (method)">#monitor_keys</a></span>
|
1406
|
+
<small>MonitorKeys</small>
|
1407
1407
|
</li>
|
1408
1408
|
|
1409
1409
|
|
1410
1410
|
<li class="r1 ">
|
1411
|
-
<span class='object_link'><a href="
|
1412
|
-
<small>
|
1411
|
+
<span class='object_link'><a href="monitor.html#monitor_keys-instance_method" title="monitor#monitor_keys (method)">#monitor_keys</a></span>
|
1412
|
+
<small>monitor</small>
|
1413
1413
|
</li>
|
1414
1414
|
|
1415
1415
|
|
1416
1416
|
<li class="r2 ">
|
1417
|
-
<span class='object_link'><a href="
|
1418
|
-
<small>
|
1417
|
+
<span class='object_link'><a href="Tester.html#monitor_keys-instance_method" title="Tester#monitor_keys (method)">#monitor_keys</a></span>
|
1418
|
+
<small>Tester</small>
|
1419
1419
|
</li>
|
1420
1420
|
|
1421
1421
|
|
1422
1422
|
<li class="r1 ">
|
1423
|
-
<span class='object_link'><a href="
|
1424
|
-
<small>
|
1423
|
+
<span class='object_link'><a href="Book.html#monitor_keys-instance_method" title="Book#monitor_keys (method)">#monitor_keys</a></span>
|
1424
|
+
<small>Book</small>
|
1425
1425
|
</li>
|
1426
1426
|
|
1427
1427
|
|
@@ -1468,14 +1468,14 @@
|
|
1468
1468
|
|
1469
1469
|
|
1470
1470
|
<li class="r1 ">
|
1471
|
-
<span class='object_link'><a href="
|
1472
|
-
<small>
|
1471
|
+
<span class='object_link'><a href="Sentence.html#next_sentence-instance_method" title="Sentence#next_sentence (method)">#next_sentence</a></span>
|
1472
|
+
<small>Sentence</small>
|
1473
1473
|
</li>
|
1474
1474
|
|
1475
1475
|
|
1476
1476
|
<li class="r2 ">
|
1477
|
-
<span class='object_link'><a href="
|
1478
|
-
<small>
|
1477
|
+
<span class='object_link'><a href="Book.html#next_sentence-instance_method" title="Book#next_sentence (method)">#next_sentence</a></span>
|
1478
|
+
<small>Book</small>
|
1479
1479
|
</li>
|
1480
1480
|
|
1481
1481
|
|
@@ -1564,14 +1564,14 @@
|
|
1564
1564
|
|
1565
1565
|
|
1566
1566
|
<li class="r1 ">
|
1567
|
-
<span class='object_link'><a href="
|
1568
|
-
<small>
|
1567
|
+
<span class='object_link'><a href="ToneGenerator.html#play-instance_method" title="ToneGenerator#play (method)">#play</a></span>
|
1568
|
+
<small>ToneGenerator</small>
|
1569
1569
|
</li>
|
1570
1570
|
|
1571
1571
|
|
1572
1572
|
<li class="r2 ">
|
1573
|
-
<span class='object_link'><a href="
|
1574
|
-
<small>
|
1573
|
+
<span class='object_link'><a href="AudioPlayer.html#play-instance_method" title="AudioPlayer#play (method)">#play</a></span>
|
1574
|
+
<small>AudioPlayer</small>
|
1575
1575
|
</li>
|
1576
1576
|
|
1577
1577
|
|
@@ -1594,14 +1594,14 @@
|
|
1594
1594
|
|
1595
1595
|
|
1596
1596
|
<li class="r2 ">
|
1597
|
-
<span class='object_link'><a href="
|
1598
|
-
<small>
|
1597
|
+
<span class='object_link'><a href="AudioPlayer.html#play_filename-instance_method" title="AudioPlayer#play_filename (method)">#play_filename</a></span>
|
1598
|
+
<small>AudioPlayer</small>
|
1599
1599
|
</li>
|
1600
1600
|
|
1601
1601
|
|
1602
1602
|
<li class="r1 ">
|
1603
|
-
<span class='object_link'><a href="
|
1604
|
-
<small>
|
1603
|
+
<span class='object_link'><a href="ToneGenerator.html#play_filename-instance_method" title="ToneGenerator#play_filename (method)">#play_filename</a></span>
|
1604
|
+
<small>ToneGenerator</small>
|
1605
1605
|
</li>
|
1606
1606
|
|
1607
1607
|
|
@@ -1648,14 +1648,14 @@
|
|
1648
1648
|
|
1649
1649
|
|
1650
1650
|
<li class="r1 ">
|
1651
|
-
<span class='object_link'><a href="
|
1652
|
-
<small>
|
1651
|
+
<span class='object_link'><a href="Tester.html#play_words_thread-instance_method" title="Tester#play_words_thread (method)">#play_words_thread</a></span>
|
1652
|
+
<small>Tester</small>
|
1653
1653
|
</li>
|
1654
1654
|
|
1655
1655
|
|
1656
1656
|
<li class="r2 ">
|
1657
|
-
<span class='object_link'><a href="
|
1658
|
-
<small>
|
1657
|
+
<span class='object_link'><a href="RepeatWord.html#play_words_thread-instance_method" title="RepeatWord#play_words_thread (method)">#play_words_thread</a></span>
|
1658
|
+
<small>RepeatWord</small>
|
1659
1659
|
</li>
|
1660
1660
|
|
1661
1661
|
|
@@ -1732,20 +1732,20 @@
|
|
1732
1732
|
|
1733
1733
|
|
1734
1734
|
<li class="r1 ">
|
1735
|
-
<span class='object_link'><a href="
|
1736
|
-
<small>
|
1735
|
+
<span class='object_link'><a href="Tester.html#print_failed_exit_words-instance_method" title="Tester#print_failed_exit_words (method)">#print_failed_exit_words</a></span>
|
1736
|
+
<small>Tester</small>
|
1737
1737
|
</li>
|
1738
1738
|
|
1739
1739
|
|
1740
1740
|
<li class="r2 ">
|
1741
|
-
<span class='object_link'><a href="
|
1742
|
-
<small>
|
1741
|
+
<span class='object_link'><a href="RepeatWord.html#print_failed_exit_words-instance_method" title="RepeatWord#print_failed_exit_words (method)">#print_failed_exit_words</a></span>
|
1742
|
+
<small>RepeatWord</small>
|
1743
1743
|
</li>
|
1744
1744
|
|
1745
1745
|
|
1746
1746
|
<li class="r1 ">
|
1747
|
-
<span class='object_link'><a href="
|
1748
|
-
<small>
|
1747
|
+
<span class='object_link'><a href="TestWords.html#print_failed_exit_words-instance_method" title="TestWords#print_failed_exit_words (method)">#print_failed_exit_words</a></span>
|
1748
|
+
<small>TestWords</small>
|
1749
1749
|
</li>
|
1750
1750
|
|
1751
1751
|
|
@@ -1768,26 +1768,26 @@
|
|
1768
1768
|
|
1769
1769
|
|
1770
1770
|
<li class="r1 ">
|
1771
|
-
<span class='object_link'><a href="
|
1772
|
-
<small>
|
1771
|
+
<span class='object_link'><a href="TestLetters.html#print_marked_maybe-instance_method" title="TestLetters#print_marked_maybe (method)">#print_marked_maybe</a></span>
|
1772
|
+
<small>TestLetters</small>
|
1773
1773
|
</li>
|
1774
1774
|
|
1775
1775
|
|
1776
1776
|
<li class="r2 ">
|
1777
|
-
<span class='object_link'><a href="
|
1778
|
-
<small>
|
1777
|
+
<span class='object_link'><a href="Book.html#print_marked_maybe-instance_method" title="Book#print_marked_maybe (method)">#print_marked_maybe</a></span>
|
1778
|
+
<small>Book</small>
|
1779
1779
|
</li>
|
1780
1780
|
|
1781
1781
|
|
1782
1782
|
<li class="r1 ">
|
1783
|
-
<span class='object_link'><a href="
|
1784
|
-
<small>
|
1783
|
+
<span class='object_link'><a href="TestWords.html#print_marked_maybe-instance_method" title="TestWords#print_marked_maybe (method)">#print_marked_maybe</a></span>
|
1784
|
+
<small>TestWords</small>
|
1785
1785
|
</li>
|
1786
1786
|
|
1787
1787
|
|
1788
1788
|
<li class="r2 ">
|
1789
|
-
<span class='object_link'><a href="
|
1790
|
-
<small>
|
1789
|
+
<span class='object_link'><a href="RepeatWord.html#print_marked_maybe-instance_method" title="RepeatWord#print_marked_maybe (method)">#print_marked_maybe</a></span>
|
1790
|
+
<small>RepeatWord</small>
|
1791
1791
|
</li>
|
1792
1792
|
|
1793
1793
|
|
@@ -1822,8 +1822,8 @@
|
|
1822
1822
|
|
1823
1823
|
|
1824
1824
|
<li class="r2 ">
|
1825
|
-
<span class='object_link'><a href="
|
1826
|
-
<small>
|
1825
|
+
<span class='object_link'><a href="TestWords.html#print_words-instance_method" title="TestWords#print_words (method)">#print_words</a></span>
|
1826
|
+
<small>TestWords</small>
|
1827
1827
|
</li>
|
1828
1828
|
|
1829
1829
|
|
@@ -1834,14 +1834,14 @@
|
|
1834
1834
|
|
1835
1835
|
|
1836
1836
|
<li class="r2 ">
|
1837
|
-
<span class='object_link'><a href="
|
1838
|
-
<small>
|
1837
|
+
<span class='object_link'><a href="TestLetters.html#print_words-instance_method" title="TestLetters#print_words (method)">#print_words</a></span>
|
1838
|
+
<small>TestLetters</small>
|
1839
1839
|
</li>
|
1840
1840
|
|
1841
1841
|
|
1842
1842
|
<li class="r1 ">
|
1843
|
-
<span class='object_link'><a href="
|
1844
|
-
<small>
|
1843
|
+
<span class='object_link'><a href="Book.html#print_words-instance_method" title="Book#print_words (method)">#print_words</a></span>
|
1844
|
+
<small>Book</small>
|
1845
1845
|
</li>
|
1846
1846
|
|
1847
1847
|
|
@@ -1894,44 +1894,44 @@
|
|
1894
1894
|
|
1895
1895
|
|
1896
1896
|
<li class="r2 ">
|
1897
|
-
<span class='object_link'><a href="
|
1898
|
-
<small>
|
1897
|
+
<span class='object_link'><a href="TestLetters.html#process_input_word_maybe-instance_method" title="TestLetters#process_input_word_maybe (method)">#process_input_word_maybe</a></span>
|
1898
|
+
<small>TestLetters</small>
|
1899
1899
|
</li>
|
1900
1900
|
|
1901
1901
|
|
1902
1902
|
<li class="r1 ">
|
1903
|
-
<span class='object_link'><a href="
|
1904
|
-
<small>
|
1903
|
+
<span class='object_link'><a href="Book.html#process_input_word_maybe-instance_method" title="Book#process_input_word_maybe (method)">#process_input_word_maybe</a></span>
|
1904
|
+
<small>Book</small>
|
1905
1905
|
</li>
|
1906
1906
|
|
1907
1907
|
|
1908
1908
|
<li class="r2 ">
|
1909
|
-
<span class='object_link'><a href="
|
1910
|
-
<small>
|
1909
|
+
<span class='object_link'><a href="RepeatWord.html#process_input_word_maybe-instance_method" title="RepeatWord#process_input_word_maybe (method)">#process_input_word_maybe</a></span>
|
1910
|
+
<small>RepeatWord</small>
|
1911
1911
|
</li>
|
1912
1912
|
|
1913
1913
|
|
1914
1914
|
<li class="r1 ">
|
1915
|
-
<span class='object_link'><a href="
|
1916
|
-
<small>
|
1915
|
+
<span class='object_link'><a href="TestWords.html#process_input_word_maybe-instance_method" title="TestWords#process_input_word_maybe (method)">#process_input_word_maybe</a></span>
|
1916
|
+
<small>TestWords</small>
|
1917
1917
|
</li>
|
1918
1918
|
|
1919
1919
|
|
1920
1920
|
<li class="r2 ">
|
1921
|
-
<span class='object_link'><a href="
|
1922
|
-
<small>
|
1921
|
+
<span class='object_link'><a href="Book.html#process_letter-instance_method" title="Book#process_letter (method)">#process_letter</a></span>
|
1922
|
+
<small>Book</small>
|
1923
1923
|
</li>
|
1924
1924
|
|
1925
1925
|
|
1926
1926
|
<li class="r1 ">
|
1927
|
-
<span class='object_link'><a href="
|
1928
|
-
<small>
|
1927
|
+
<span class='object_link'><a href="TestWords.html#process_letter-instance_method" title="TestWords#process_letter (method)">#process_letter</a></span>
|
1928
|
+
<small>TestWords</small>
|
1929
1929
|
</li>
|
1930
1930
|
|
1931
1931
|
|
1932
1932
|
<li class="r2 ">
|
1933
|
-
<span class='object_link'><a href="
|
1934
|
-
<small>
|
1933
|
+
<span class='object_link'><a href="TestLetters.html#process_letter-instance_method" title="TestLetters#process_letter (method)">#process_letter</a></span>
|
1934
|
+
<small>TestLetters</small>
|
1935
1935
|
</li>
|
1936
1936
|
|
1937
1937
|
|
@@ -1996,20 +1996,20 @@
|
|
1996
1996
|
|
1997
1997
|
|
1998
1998
|
<li class="r1 ">
|
1999
|
-
<span class='object_link'><a href="
|
2000
|
-
<small>
|
1999
|
+
<span class='object_link'><a href="monitor.html#quit-instance_method" title="monitor#quit (method)">#quit</a></span>
|
2000
|
+
<small>monitor</small>
|
2001
2001
|
</li>
|
2002
2002
|
|
2003
2003
|
|
2004
2004
|
<li class="r2 ">
|
2005
|
-
<span class='object_link'><a href="
|
2006
|
-
<small>
|
2005
|
+
<span class='object_link'><a href="CW.html#quit-instance_method" title="CW#quit (method)">#quit</a></span>
|
2006
|
+
<small>CW</small>
|
2007
2007
|
</li>
|
2008
2008
|
|
2009
2009
|
|
2010
2010
|
<li class="r1 ">
|
2011
|
-
<span class='object_link'><a href="
|
2012
|
-
<small>
|
2011
|
+
<span class='object_link'><a href="Tester.html#quit-instance_method" title="Tester#quit (method)">#quit</a></span>
|
2012
|
+
<small>Tester</small>
|
2013
2013
|
</li>
|
2014
2014
|
|
2015
2015
|
|
@@ -2038,14 +2038,14 @@
|
|
2038
2038
|
|
2039
2039
|
|
2040
2040
|
<li class="r2 ">
|
2041
|
-
<span class='object_link'><a href="
|
2042
|
-
<small>
|
2041
|
+
<span class='object_link'><a href="CwDsl.html#random_letters-instance_method" title="CwDsl#random_letters (method)">#random_letters</a></span>
|
2042
|
+
<small>CwDsl</small>
|
2043
2043
|
</li>
|
2044
2044
|
|
2045
2045
|
|
2046
2046
|
<li class="r1 ">
|
2047
|
-
<span class='object_link'><a href="
|
2048
|
-
<small>
|
2047
|
+
<span class='object_link'><a href="Words.html#random_letters-instance_method" title="Words#random_letters (method)">#random_letters</a></span>
|
2048
|
+
<small>Words</small>
|
2049
2049
|
</li>
|
2050
2050
|
|
2051
2051
|
|
@@ -2164,14 +2164,14 @@
|
|
2164
2164
|
|
2165
2165
|
|
2166
2166
|
<li class="r1 ">
|
2167
|
-
<span class='object_link'><a href="
|
2168
|
-
<small>
|
2167
|
+
<span class='object_link'><a href="Tester.html#reset_stdin-instance_method" title="Tester#reset_stdin (method)">#reset_stdin</a></span>
|
2168
|
+
<small>Tester</small>
|
2169
2169
|
</li>
|
2170
2170
|
|
2171
2171
|
|
2172
2172
|
<li class="r2 ">
|
2173
|
-
<span class='object_link'><a href="
|
2174
|
-
<small>
|
2173
|
+
<span class='object_link'><a href="KeyInput.html#reset_stdin-instance_method" title="KeyInput#reset_stdin (method)">#reset_stdin</a></span>
|
2174
|
+
<small>KeyInput</small>
|
2175
2175
|
</li>
|
2176
2176
|
|
2177
2177
|
|
@@ -2212,389 +2212,377 @@
|
|
2212
2212
|
|
2213
2213
|
|
2214
2214
|
<li class="r1 ">
|
2215
|
-
<span class='object_link'><a href="Tester.html#run-instance_method" title="Tester#run (method)">#run</a></span>
|
2216
|
-
<small>Tester</small>
|
2217
|
-
</li>
|
2218
|
-
|
2219
|
-
|
2220
|
-
<li class="r2 ">
|
2221
2215
|
<span class='object_link'><a href="CW.html#run-instance_method" title="CW#run (method)">#run</a></span>
|
2222
2216
|
<small>CW</small>
|
2223
2217
|
</li>
|
2224
2218
|
|
2225
2219
|
|
2226
|
-
<li class="
|
2220
|
+
<li class="r2 ">
|
2227
2221
|
<span class='object_link'><a href="CWThreads.html#run-instance_method" title="CWThreads#run (method)">#run</a></span>
|
2228
2222
|
<small>CWThreads</small>
|
2229
2223
|
</li>
|
2230
2224
|
|
2231
2225
|
|
2232
|
-
<li class="
|
2226
|
+
<li class="r1 ">
|
2233
2227
|
<span class='object_link'><a href="RepeatWord.html#run-instance_method" title="RepeatWord#run (method)">#run</a></span>
|
2234
2228
|
<small>RepeatWord</small>
|
2235
2229
|
</li>
|
2236
2230
|
|
2237
2231
|
|
2238
|
-
<li class="
|
2239
|
-
<span class='object_link'><a href="
|
2240
|
-
<small>
|
2232
|
+
<li class="r2 ">
|
2233
|
+
<span class='object_link'><a href="Tester.html#run-instance_method" title="Tester#run (method)">#run</a></span>
|
2234
|
+
<small>Tester</small>
|
2241
2235
|
</li>
|
2242
2236
|
|
2243
2237
|
|
2244
|
-
<li class="
|
2238
|
+
<li class="r1 ">
|
2245
2239
|
<span class='object_link'><a href="Voice.html#say-instance_method" title="Voice#say (method)">#say</a></span>
|
2246
2240
|
<small>Voice</small>
|
2247
2241
|
</li>
|
2248
2242
|
|
2249
2243
|
|
2250
|
-
<li class="
|
2244
|
+
<li class="r2 ">
|
2251
2245
|
<span class='object_link'><a href="ToneGenerator.html#send_char-instance_method" title="ToneGenerator#send_char (method)">#send_char</a></span>
|
2252
2246
|
<small>ToneGenerator</small>
|
2253
2247
|
</li>
|
2254
2248
|
|
2255
2249
|
|
2256
|
-
<li class="
|
2250
|
+
<li class="r1 ">
|
2257
2251
|
<span class='object_link'><a href="Book.html#sentence-instance_method" title="Book#sentence (method)">#sentence</a></span>
|
2258
2252
|
<small>Book</small>
|
2259
2253
|
</li>
|
2260
2254
|
|
2261
2255
|
|
2262
|
-
<li class="
|
2256
|
+
<li class="r2 ">
|
2263
2257
|
<span class='object_link'><a href="Book.html#sentence_index-instance_method" title="Book#sentence_index (method)">#sentence_index</a></span>
|
2264
2258
|
<small>Book</small>
|
2265
2259
|
</li>
|
2266
2260
|
|
2267
2261
|
|
2268
|
-
<li class="
|
2262
|
+
<li class="r1 ">
|
2269
2263
|
<span class='object_link'><a href="Book.html#sentence_index_current%3F-instance_method" title="Book#sentence_index_current? (method)">#sentence_index_current?</a></span>
|
2270
2264
|
<small>Book</small>
|
2271
2265
|
</li>
|
2272
2266
|
|
2273
2267
|
|
2274
|
-
<li class="
|
2268
|
+
<li class="r2 ">
|
2275
2269
|
<span class='object_link'><a href="BookDetails.html#sentences_complete%3F-instance_method" title="BookDetails#sentences_complete? (method)">#sentences_complete?</a></span>
|
2276
2270
|
<small>BookDetails</small>
|
2277
2271
|
</li>
|
2278
2272
|
|
2279
2273
|
|
2280
|
-
<li class="
|
2274
|
+
<li class="r1 ">
|
2281
2275
|
<span class='object_link'><a href="BookDetails.html#session_finished%3F-instance_method" title="BookDetails#session_finished? (method)">#session_finished?</a></span>
|
2282
2276
|
<small>BookDetails</small>
|
2283
2277
|
</li>
|
2284
2278
|
|
2285
2279
|
|
2286
|
-
<li class="
|
2280
|
+
<li class="r2 ">
|
2287
2281
|
<span class='object_link'><a href="CwDsl.html#set_tone_type-instance_method" title="CwDsl#set_tone_type (method)">#set_tone_type</a></span>
|
2288
2282
|
<small>CwDsl</small>
|
2289
2283
|
</li>
|
2290
2284
|
|
2291
2285
|
|
2292
|
-
<li class="
|
2286
|
+
<li class="r1 ">
|
2293
2287
|
<span class='object_link'><a href="Words.html#shuffle-instance_method" title="Words#shuffle (method)">#shuffle</a></span>
|
2294
2288
|
<small>Words</small>
|
2295
2289
|
</li>
|
2296
2290
|
|
2297
2291
|
|
2298
|
-
<li class="
|
2292
|
+
<li class="r2 ">
|
2299
2293
|
<span class='object_link'><a href="Alphabet.html#shuffle_alphabet_maybe-instance_method" title="Alphabet#shuffle_alphabet_maybe (method)">#shuffle_alphabet_maybe</a></span>
|
2300
2294
|
<small>Alphabet</small>
|
2301
2295
|
</li>
|
2302
2296
|
|
2303
2297
|
|
2304
|
-
<li class="
|
2298
|
+
<li class="r1 ">
|
2305
2299
|
<span class='object_link'><a href="Randomize.html#shuffle_chars-instance_method" title="Randomize#shuffle_chars (method)">#shuffle_chars</a></span>
|
2306
2300
|
<small>Randomize</small>
|
2307
2301
|
</li>
|
2308
2302
|
|
2309
2303
|
|
2310
|
-
<li class="
|
2304
|
+
<li class="r2 ">
|
2311
2305
|
<span class='object_link'><a href="Numbers.html#shuffle_numbers_maybe-instance_method" title="Numbers#shuffle_numbers_maybe (method)">#shuffle_numbers_maybe</a></span>
|
2312
2306
|
<small>Numbers</small>
|
2313
2307
|
</li>
|
2314
2308
|
|
2315
2309
|
|
2316
|
-
<li class="
|
2310
|
+
<li class="r1 ">
|
2317
2311
|
<span class='object_link'><a href="Str.html#shuffle_str-instance_method" title="Str#shuffle_str (method)">#shuffle_str</a></span>
|
2318
2312
|
<small>Str</small>
|
2319
2313
|
</li>
|
2320
2314
|
|
2321
2315
|
|
2322
|
-
<li class="
|
2316
|
+
<li class="r2 ">
|
2323
2317
|
<span class='object_link'><a href="Randomize.html#size-instance_method" title="Randomize#size (method)">#size</a></span>
|
2324
2318
|
<small>Randomize</small>
|
2325
2319
|
</li>
|
2326
2320
|
|
2327
2321
|
|
2328
|
-
<li class="
|
2322
|
+
<li class="r1 ">
|
2329
2323
|
<span class='object_link'><a href="Tester.html#sleep_char_delay-instance_method" title="Tester#sleep_char_delay (method)">#sleep_char_delay</a></span>
|
2330
2324
|
<small>Tester</small>
|
2331
2325
|
</li>
|
2332
2326
|
|
2333
2327
|
|
2334
|
-
<li class="
|
2328
|
+
<li class="r2 ">
|
2335
2329
|
<span class='object_link'><a href="Rss.html#source-instance_method" title="Rss#source (method)">#source</a></span>
|
2336
2330
|
<small>Rss</small>
|
2337
2331
|
</li>
|
2338
2332
|
|
2339
2333
|
|
2340
|
-
<li class="
|
2334
|
+
<li class="r1 ">
|
2341
2335
|
<span class='object_link'><a href="Rss.html#sources-instance_method" title="Rss#sources (method)">#sources</a></span>
|
2342
2336
|
<small>Rss</small>
|
2343
2337
|
</li>
|
2344
2338
|
|
2345
2339
|
|
2346
|
-
<li class="
|
2340
|
+
<li class="r2 ">
|
2347
2341
|
<span class='object_link'><a href="Tester.html#space-instance_method" title="Tester#space (method)">#space</a></span>
|
2348
2342
|
<small>Tester</small>
|
2349
2343
|
</li>
|
2350
2344
|
|
2351
2345
|
|
2352
|
-
<li class="
|
2346
|
+
<li class="r1 ">
|
2353
2347
|
<span class='object_link'><a href="ToneGenerator.html#space_or_espace-instance_method" title="ToneGenerator#space_or_espace (method)">#space_or_espace</a></span>
|
2354
2348
|
<small>ToneGenerator</small>
|
2355
2349
|
</li>
|
2356
2350
|
|
2357
2351
|
|
2358
|
-
<li class="
|
2352
|
+
<li class="r2 ">
|
2359
2353
|
<span class='object_link'><a href="ToneGenerator.html#space_sample%3F-instance_method" title="ToneGenerator#space_sample? (method)">#space_sample?</a></span>
|
2360
2354
|
<small>ToneGenerator</small>
|
2361
2355
|
</li>
|
2362
2356
|
|
2363
2357
|
|
2364
|
-
<li class="
|
2358
|
+
<li class="r1 ">
|
2365
2359
|
<span class='object_link'><a href="Timing.html#space_timing-instance_method" title="Timing#space_timing (method)">#space_timing</a></span>
|
2366
2360
|
<small>Timing</small>
|
2367
2361
|
</li>
|
2368
2362
|
|
2369
2363
|
|
2370
|
-
<li class="
|
2364
|
+
<li class="r2 ">
|
2371
2365
|
<span class='object_link'><a href="Tester.html#spawn_play-instance_method" title="Tester#spawn_play (method)">#spawn_play</a></span>
|
2372
2366
|
<small>Tester</small>
|
2373
2367
|
</li>
|
2374
2368
|
|
2375
2369
|
|
2376
|
-
<li class="
|
2370
|
+
<li class="r1 ">
|
2377
2371
|
<span class='object_link'><a href="Tester.html#start_sync-instance_method" title="Tester#start_sync (method)">#start_sync</a></span>
|
2378
2372
|
<small>Tester</small>
|
2379
2373
|
</li>
|
2380
2374
|
|
2381
2375
|
|
2382
|
-
<li class="
|
2376
|
+
<li class="r2 ">
|
2383
2377
|
<span class='object_link'><a href="Tester.html#start_sync%3F-instance_method" title="Tester#start_sync? (method)">#start_sync?</a></span>
|
2384
2378
|
<small>Tester</small>
|
2385
2379
|
</li>
|
2386
2380
|
|
2387
2381
|
|
2388
|
-
<li class="
|
2382
|
+
<li class="r1 ">
|
2389
2383
|
<span class='object_link'><a href="CWThreads.html#start_threads-instance_method" title="CWThreads#start_threads (method)">#start_threads</a></span>
|
2390
2384
|
<small>CWThreads</small>
|
2391
2385
|
</li>
|
2392
2386
|
|
2393
2387
|
|
2394
|
-
<li class="
|
2388
|
+
<li class="r2 ">
|
2395
2389
|
<span class='object_link'><a href="Timing.html#start_time-instance_method" title="Timing#start_time (method)">#start_time</a></span>
|
2396
2390
|
<small>Timing</small>
|
2397
2391
|
</li>
|
2398
2392
|
|
2399
2393
|
|
2400
|
-
<li class="
|
2394
|
+
<li class="r1 ">
|
2401
2395
|
<span class='object_link'><a href="AudioPlayer.html#startup_delay-instance_method" title="AudioPlayer#startup_delay (method)">#startup_delay</a></span>
|
2402
2396
|
<small>AudioPlayer</small>
|
2403
2397
|
</li>
|
2404
2398
|
|
2405
2399
|
|
2406
|
-
<li class="
|
2400
|
+
<li class="r2 ">
|
2407
2401
|
<span class='object_link'><a href="AudioPlayer.html#still_playing%3F-instance_method" title="AudioPlayer#still_playing? (method)">#still_playing?</a></span>
|
2408
2402
|
<small>AudioPlayer</small>
|
2409
2403
|
</li>
|
2410
2404
|
|
2411
2405
|
|
2412
|
-
<li class="
|
2406
|
+
<li class="r1 ">
|
2413
2407
|
<span class='object_link'><a href="AudioPlayer.html#stop-instance_method" title="AudioPlayer#stop (method)">#stop</a></span>
|
2414
2408
|
<small>AudioPlayer</small>
|
2415
2409
|
</li>
|
2416
2410
|
|
2417
2411
|
|
2418
|
-
<li class="
|
2412
|
+
<li class="r2 ">
|
2419
2413
|
<span class='object_link'><a href="Tester.html#stream-instance_method" title="Tester#stream (method)">#stream</a></span>
|
2420
2414
|
<small>Tester</small>
|
2421
2415
|
</li>
|
2422
2416
|
|
2423
2417
|
|
2424
|
-
<li class="
|
2418
|
+
<li class="r1 ">
|
2425
2419
|
<span class='object_link'><a href="Stream.html#stream_empty%3F-instance_method" title="Stream#stream_empty? (method)">#stream_empty?</a></span>
|
2426
2420
|
<small>Stream</small>
|
2427
2421
|
</li>
|
2428
2422
|
|
2429
2423
|
|
2430
|
-
<li class="
|
2424
|
+
<li class="r2 ">
|
2431
2425
|
<span class='object_link'><a href="Str.html#stringify-instance_method" title="Str#stringify (method)">#stringify</a></span>
|
2432
2426
|
<small>Str</small>
|
2433
2427
|
</li>
|
2434
2428
|
|
2435
2429
|
|
2436
|
-
<li class="
|
2430
|
+
<li class="r1 ">
|
2437
2431
|
<span class='object_link'><a href="CurrentWord.html#strip-instance_method" title="CurrentWord#strip (method)">#strip</a></span>
|
2438
2432
|
<small>CurrentWord</small>
|
2439
2433
|
</li>
|
2440
2434
|
|
2441
2435
|
|
2442
|
-
<li class="
|
2436
|
+
<li class="r2 ">
|
2443
2437
|
<span class='object_link'><a href="Tester.html#sync_with_audio_player-instance_method" title="Tester#sync_with_audio_player (method)">#sync_with_audio_player</a></span>
|
2444
2438
|
<small>Tester</small>
|
2445
2439
|
</li>
|
2446
2440
|
|
2447
2441
|
|
2448
|
-
<li class="
|
2442
|
+
<li class="r1 ">
|
2449
2443
|
<span class='object_link'><a href="Tester.html#sync_with_play-instance_method" title="Tester#sync_with_play (method)">#sync_with_play</a></span>
|
2450
2444
|
<small>Tester</small>
|
2451
2445
|
</li>
|
2452
2446
|
|
2453
2447
|
|
2454
|
-
<li class="
|
2448
|
+
<li class="r2 ">
|
2455
2449
|
<span class='object_link'><a href="Tester.html#sync_with_print-instance_method" title="Tester#sync_with_print (method)">#sync_with_print</a></span>
|
2456
2450
|
<small>Tester</small>
|
2457
2451
|
</li>
|
2458
2452
|
|
2459
2453
|
|
2460
|
-
<li class="
|
2454
|
+
<li class="r1 ">
|
2461
2455
|
<span class='object_link'><a href="Randomize.html#take_chars-instance_method" title="Randomize#take_chars (method)">#take_chars</a></span>
|
2462
2456
|
<small>Randomize</small>
|
2463
2457
|
</li>
|
2464
2458
|
|
2465
2459
|
|
2466
|
-
<li class="
|
2460
|
+
<li class="r2 ">
|
2467
2461
|
<span class='object_link'><a href="CW.html#test_letters-instance_method" title="CW#test_letters (method)">#test_letters</a></span>
|
2468
2462
|
<small>CW</small>
|
2469
2463
|
</li>
|
2470
2464
|
|
2471
2465
|
|
2472
|
-
<li class="
|
2466
|
+
<li class="r1 ">
|
2473
2467
|
<span class='object_link'><a href="CW.html#test_words-instance_method" title="CW#test_words (method)">#test_words</a></span>
|
2474
2468
|
<small>CW</small>
|
2475
2469
|
</li>
|
2476
2470
|
|
2477
2471
|
|
2478
|
-
<li class="
|
2472
|
+
<li class="r2 ">
|
2479
2473
|
<span class='object_link'><a href="Sentence.html#text-instance_method" title="Sentence#text (method)">#text</a></span>
|
2480
2474
|
<small>Sentence</small>
|
2481
2475
|
</li>
|
2482
2476
|
|
2483
2477
|
|
2484
|
-
<li class="
|
2478
|
+
<li class="r1 ">
|
2485
2479
|
<span class='object_link'><a href="Book.html#thread_processes-instance_method" title="Book#thread_processes (method)">#thread_processes</a></span>
|
2486
2480
|
<small>Book</small>
|
2487
2481
|
</li>
|
2488
2482
|
|
2489
2483
|
|
2490
|
-
<li class="
|
2484
|
+
<li class="r2 ">
|
2491
2485
|
<span class='object_link'><a href="Tester.html#thread_processes-instance_method" title="Tester#thread_processes (method)">#thread_processes</a></span>
|
2492
2486
|
<small>Tester</small>
|
2493
2487
|
</li>
|
2494
2488
|
|
2495
2489
|
|
2496
|
-
<li class="
|
2490
|
+
<li class="r1 ">
|
2497
2491
|
<span class='object_link'><a href="CWThreads.html#threads-instance_method" title="CWThreads#threads (method)">#threads</a></span>
|
2498
2492
|
<small>CWThreads</small>
|
2499
2493
|
</li>
|
2500
2494
|
|
2501
2495
|
|
2502
|
-
<li class="
|
2496
|
+
<li class="r2 ">
|
2503
2497
|
<span class='object_link'><a href="Tester.html#timing-instance_method" title="Tester#timing (method)">#timing</a></span>
|
2504
2498
|
<small>Tester</small>
|
2505
2499
|
</li>
|
2506
2500
|
|
2507
2501
|
|
2508
|
-
<li class="
|
2502
|
+
<li class="r1 ">
|
2509
2503
|
<span class='object_link'><a href="Words.html#to_array-instance_method" title="Words#to_array (method)">#to_array</a></span>
|
2510
2504
|
<small>Words</small>
|
2511
2505
|
</li>
|
2512
2506
|
|
2513
2507
|
|
2514
|
-
<li class="
|
2508
|
+
<li class="r2 ">
|
2515
2509
|
<span class='object_link'><a href="Sentence.html#to_array-instance_method" title="Sentence#to_array (method)">#to_array</a></span>
|
2516
2510
|
<small>Sentence</small>
|
2517
2511
|
</li>
|
2518
2512
|
|
2519
2513
|
|
2520
|
-
<li class="
|
2521
|
-
<span class='object_link'><a href="
|
2522
|
-
<small>
|
2514
|
+
<li class="r1 ">
|
2515
|
+
<span class='object_link'><a href="Str.html#to_s-instance_method" title="Str#to_s (method)">#to_s</a></span>
|
2516
|
+
<small>Str</small>
|
2523
2517
|
</li>
|
2524
2518
|
|
2525
2519
|
|
2526
|
-
<li class="
|
2520
|
+
<li class="r2 ">
|
2527
2521
|
<span class='object_link'><a href="CurrentWord.html#to_s-instance_method" title="CurrentWord#to_s (method)">#to_s</a></span>
|
2528
2522
|
<small>CurrentWord</small>
|
2529
2523
|
</li>
|
2530
2524
|
|
2531
2525
|
|
2532
|
-
<li class="
|
2533
|
-
<span class='object_link'><a href="
|
2534
|
-
<small>
|
2526
|
+
<li class="r1 ">
|
2527
|
+
<span class='object_link'><a href="CW.html#to_s-instance_method" title="CW#to_s (method)">#to_s</a></span>
|
2528
|
+
<small>CW</small>
|
2535
2529
|
</li>
|
2536
2530
|
|
2537
2531
|
|
2538
|
-
<li class="
|
2532
|
+
<li class="r2 ">
|
2539
2533
|
<span class='object_link'><a href="Words.html#to_s-instance_method" title="Words#to_s (method)">#to_s</a></span>
|
2540
2534
|
<small>Words</small>
|
2541
2535
|
</li>
|
2542
2536
|
|
2543
2537
|
|
2544
|
-
<li class="
|
2538
|
+
<li class="r1 ">
|
2545
2539
|
<span class='object_link'><a href="AudioPlayer.html#tone-instance_method" title="AudioPlayer#tone (method)">#tone</a></span>
|
2546
2540
|
<small>AudioPlayer</small>
|
2547
2541
|
</li>
|
2548
2542
|
|
2549
2543
|
|
2550
|
-
<li class="
|
2544
|
+
<li class="r2 ">
|
2551
2545
|
<span class='object_link'><a href="Print/ProgressPrint.html#tty%3F-instance_method" title="Print::ProgressPrint#tty? (method)">#tty?</a></span>
|
2552
2546
|
<small>Print::ProgressPrint</small>
|
2553
2547
|
</li>
|
2554
2548
|
|
2555
2549
|
|
2556
|
-
<li class="
|
2550
|
+
<li class="r1 ">
|
2557
2551
|
<span class='object_link'><a href="Print.html#update_console_size-instance_method" title="Print#update_console_size (method)">#update_console_size</a></span>
|
2558
2552
|
<small>Print</small>
|
2559
2553
|
</li>
|
2560
2554
|
|
2561
2555
|
|
2562
|
-
<li class="
|
2556
|
+
<li class="r2 ">
|
2563
2557
|
<span class='object_link'><a href="Tester.html#wait_for_no_word_process-instance_method" title="Tester#wait_for_no_word_process (method)">#wait_for_no_word_process</a></span>
|
2564
2558
|
<small>Tester</small>
|
2565
2559
|
</li>
|
2566
2560
|
|
2567
2561
|
|
2568
|
-
<li class="
|
2562
|
+
<li class="r1 ">
|
2569
2563
|
<span class='object_link'><a href="Tester.html#wait_for_start_sync-instance_method" title="Tester#wait_for_start_sync (method)">#wait_for_start_sync</a></span>
|
2570
2564
|
<small>Tester</small>
|
2571
2565
|
</li>
|
2572
2566
|
|
2573
2567
|
|
2574
|
-
<li class="
|
2568
|
+
<li class="r2 ">
|
2575
2569
|
<span class='object_link'><a href="CWThreads.html#wait_for_threads-instance_method" title="CWThreads#wait_for_threads (method)">#wait_for_threads</a></span>
|
2576
2570
|
<small>CWThreads</small>
|
2577
2571
|
</li>
|
2578
2572
|
|
2579
2573
|
|
2580
|
-
<li class="
|
2574
|
+
<li class="r1 ">
|
2581
2575
|
<span class='object_link'><a href="Tester.html#wait_player_startup_delay-instance_method" title="Tester#wait_player_startup_delay (method)">#wait_player_startup_delay</a></span>
|
2582
2576
|
<small>Tester</small>
|
2583
2577
|
</li>
|
2584
2578
|
|
2585
2579
|
|
2586
|
-
<li class="
|
2580
|
+
<li class="r2 ">
|
2587
2581
|
<span class='object_link'><a href="ToneGenerator.html#word_composite-instance_method" title="ToneGenerator#word_composite (method)">#word_composite</a></span>
|
2588
2582
|
<small>ToneGenerator</small>
|
2589
2583
|
</li>
|
2590
2584
|
|
2591
2585
|
|
2592
|
-
<li class="r2 ">
|
2593
|
-
<span class='object_link'><a href="CwDsl.html#word_count-instance_method" title="CwDsl#word_count (method)">#word_count</a></span>
|
2594
|
-
<small>CwDsl</small>
|
2595
|
-
</li>
|
2596
|
-
|
2597
|
-
|
2598
2586
|
<li class="r1 ">
|
2599
2587
|
<span class='object_link'><a href="Randomize.html#word_count-instance_method" title="Randomize#word_count (method)">#word_count</a></span>
|
2600
2588
|
<small>Randomize</small>
|
@@ -2602,20 +2590,20 @@
|
|
2602
2590
|
|
2603
2591
|
|
2604
2592
|
<li class="r2 ">
|
2605
|
-
<span class='object_link'><a href="
|
2606
|
-
<small>
|
2593
|
+
<span class='object_link'><a href="CwDsl.html#word_count-instance_method" title="CwDsl#word_count (method)">#word_count</a></span>
|
2594
|
+
<small>CwDsl</small>
|
2607
2595
|
</li>
|
2608
2596
|
|
2609
2597
|
|
2610
2598
|
<li class="r1 ">
|
2611
|
-
<span class='object_link'><a href="
|
2612
|
-
<small>
|
2599
|
+
<span class='object_link'><a href="Str.html#word_count_str-instance_method" title="Str#word_count_str (method)">#word_count_str</a></span>
|
2600
|
+
<small>Str</small>
|
2613
2601
|
</li>
|
2614
2602
|
|
2615
2603
|
|
2616
2604
|
<li class="r2 ">
|
2617
|
-
<span class='object_link'><a href="
|
2618
|
-
<small>
|
2605
|
+
<span class='object_link'><a href="ToneGenerator.html#word_parts-instance_method" title="ToneGenerator#word_parts (method)">#word_parts</a></span>
|
2606
|
+
<small>ToneGenerator</small>
|
2619
2607
|
</li>
|
2620
2608
|
|
2621
2609
|
|
@@ -2626,66 +2614,72 @@
|
|
2626
2614
|
|
2627
2615
|
|
2628
2616
|
<li class="r2 ">
|
2617
|
+
<span class='object_link'><a href="Words.html#word_size-instance_method" title="Words#word_size (method)">#word_size</a></span>
|
2618
|
+
<small>Words</small>
|
2619
|
+
</li>
|
2620
|
+
|
2621
|
+
|
2622
|
+
<li class="r1 ">
|
2629
2623
|
<span class='object_link'><a href="Str.html#word_size_str-instance_method" title="Str#word_size_str (method)">#word_size_str</a></span>
|
2630
2624
|
<small>Str</small>
|
2631
2625
|
</li>
|
2632
2626
|
|
2633
2627
|
|
2634
|
-
<li class="
|
2628
|
+
<li class="r2 ">
|
2635
2629
|
<span class='object_link'><a href="ToneGenerator.html#word_space-instance_method" title="ToneGenerator#word_space (method)">#word_space</a></span>
|
2636
2630
|
<small>ToneGenerator</small>
|
2637
2631
|
</li>
|
2638
2632
|
|
2639
2633
|
|
2640
|
-
<li class="
|
2634
|
+
<li class="r1 ">
|
2641
2635
|
<span class='object_link'><a href="CwDsl.html#words-instance_method" title="CwDsl#words (method)">#words</a></span>
|
2642
2636
|
<small>CwDsl</small>
|
2643
2637
|
</li>
|
2644
2638
|
|
2645
2639
|
|
2646
|
-
<li class="
|
2640
|
+
<li class="r2 ">
|
2647
2641
|
<span class='object_link'><a href="CwDsl.html#words%3D-instance_method" title="CwDsl#words= (method)">#words=</a></span>
|
2648
2642
|
<small>CwDsl</small>
|
2649
2643
|
</li>
|
2650
2644
|
|
2651
2645
|
|
2652
|
-
<li class="
|
2646
|
+
<li class="r1 ">
|
2653
2647
|
<span class='object_link'><a href="Str.html#wpm_str-instance_method" title="Str#wpm_str (method)">#wpm_str</a></span>
|
2654
2648
|
<small>Str</small>
|
2655
2649
|
</li>
|
2656
2650
|
|
2657
2651
|
|
2658
|
-
<li class="
|
2652
|
+
<li class="r2 ">
|
2659
2653
|
<span class='object_link'><a href="ToneGenerator.html#write_audio-instance_method" title="ToneGenerator#write_audio (method)">#write_audio</a></span>
|
2660
2654
|
<small>ToneGenerator</small>
|
2661
2655
|
</li>
|
2662
2656
|
|
2663
2657
|
|
2664
|
-
<li class="
|
2658
|
+
<li class="r1 ">
|
2665
2659
|
<span class='object_link'><a href="ToneGenerator.html#write_audio_file-instance_method" title="ToneGenerator#write_audio_file (method)">#write_audio_file</a></span>
|
2666
2660
|
<small>ToneGenerator</small>
|
2667
2661
|
</li>
|
2668
2662
|
|
2669
2663
|
|
2670
|
-
<li class="
|
2664
|
+
<li class="r2 ">
|
2671
2665
|
<span class='object_link'><a href="Book.html#write_book_progress-instance_method" title="Book#write_book_progress (method)">#write_book_progress</a></span>
|
2672
2666
|
<small>Book</small>
|
2673
2667
|
</li>
|
2674
2668
|
|
2675
2669
|
|
2676
|
-
<li class="
|
2670
|
+
<li class="r1 ">
|
2677
2671
|
<span class='object_link'><a href="ToneGenerator.html#write_element_audio_file-instance_method" title="ToneGenerator#write_element_audio_file (method)">#write_element_audio_file</a></span>
|
2678
2672
|
<small>ToneGenerator</small>
|
2679
2673
|
</li>
|
2680
2674
|
|
2681
2675
|
|
2682
|
-
<li class="
|
2676
|
+
<li class="r2 ">
|
2683
2677
|
<span class='object_link'><a href="Sentence.html#write_progress-instance_method" title="Sentence#write_progress (method)">#write_progress</a></span>
|
2684
2678
|
<small>Sentence</small>
|
2685
2679
|
</li>
|
2686
2680
|
|
2687
2681
|
|
2688
|
-
<li class="
|
2682
|
+
<li class="r1 ">
|
2689
2683
|
<span class='object_link'><a href="ToneGenerator.html#write_word_parts-instance_method" title="ToneGenerator#write_word_parts (method)">#write_word_parts</a></span>
|
2690
2684
|
<small>ToneGenerator</small>
|
2691
2685
|
</li>
|