ionian 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/doc/Ionian/IO.html +489 -0
- data/doc/Ionian.html +99 -0
- data/doc/created.rid +3 -0
- data/doc/fonts/Lato-Light.ttf +0 -0
- data/doc/fonts/Lato-LightItalic.ttf +0 -0
- data/doc/fonts/Lato-Regular.ttf +0 -0
- data/doc/fonts/Lato-RegularItalic.ttf +0 -0
- data/doc/fonts/SourceCodePro-Bold.ttf +0 -0
- data/doc/fonts/SourceCodePro-Regular.ttf +0 -0
- data/doc/fonts.css +167 -0
- data/doc/images/add.png +0 -0
- data/doc/images/arrow_up.png +0 -0
- data/doc/images/brick.png +0 -0
- data/doc/images/brick_link.png +0 -0
- data/doc/images/bug.png +0 -0
- data/doc/images/bullet_black.png +0 -0
- data/doc/images/bullet_toggle_minus.png +0 -0
- data/doc/images/bullet_toggle_plus.png +0 -0
- data/doc/images/date.png +0 -0
- data/doc/images/delete.png +0 -0
- data/doc/images/find.png +0 -0
- data/doc/images/loadingAnimation.gif +0 -0
- data/doc/images/macFFBgHack.png +0 -0
- data/doc/images/package.png +0 -0
- data/doc/images/page_green.png +0 -0
- data/doc/images/page_white_text.png +0 -0
- data/doc/images/page_white_width.png +0 -0
- data/doc/images/plugin.png +0 -0
- data/doc/images/ruby.png +0 -0
- data/doc/images/tag_blue.png +0 -0
- data/doc/images/tag_green.png +0 -0
- data/doc/images/transparent.png +0 -0
- data/doc/images/wrench.png +0 -0
- data/doc/images/wrench_orange.png +0 -0
- data/doc/images/zoom.png +0 -0
- data/doc/index.html +86 -0
- data/doc/js/darkfish.js +140 -0
- data/doc/js/jquery.js +18 -0
- data/doc/js/navigation.js +142 -0
- data/doc/js/search.js +102 -0
- data/doc/js/search_index.js +1 -0
- data/doc/js/searcher.js +228 -0
- data/doc/rdoc.css +574 -0
- data/doc/table_of_contents.html +90 -0
- data/lib/ionian/io.rb +110 -0
- data/lib/ionian.rb +1 -0
- data/license.txt +19 -0
- metadata +147 -0
data/doc/rdoc.css
ADDED
@@ -0,0 +1,574 @@
|
|
1
|
+
/*
|
2
|
+
* "Darkfish" Rdoc CSS
|
3
|
+
* $Id: rdoc.css 54 2009-01-27 01:09:48Z deveiant $
|
4
|
+
*
|
5
|
+
* Author: Michael Granger <ged@FaerieMUD.org>
|
6
|
+
*
|
7
|
+
*/
|
8
|
+
|
9
|
+
/* vim: ft=css et sw=2 ts=2 sts=2 */
|
10
|
+
/* Base Green is: #6C8C22 */
|
11
|
+
|
12
|
+
* { padding: 0; margin: 0; }
|
13
|
+
|
14
|
+
body {
|
15
|
+
background: #fafafa;
|
16
|
+
font-family: Lato, sans-serif;
|
17
|
+
font-weight: 300;
|
18
|
+
}
|
19
|
+
|
20
|
+
h1 span,
|
21
|
+
h2 span,
|
22
|
+
h3 span,
|
23
|
+
h4 span,
|
24
|
+
h5 span,
|
25
|
+
h6 span {
|
26
|
+
display: none;
|
27
|
+
padding-left: 1em;
|
28
|
+
font-size: 10px;
|
29
|
+
vertical-align: super;
|
30
|
+
}
|
31
|
+
|
32
|
+
h1:hover span,
|
33
|
+
h2:hover span,
|
34
|
+
h3:hover span,
|
35
|
+
h4:hover span,
|
36
|
+
h5:hover span,
|
37
|
+
h6:hover span {
|
38
|
+
display: inline;
|
39
|
+
}
|
40
|
+
|
41
|
+
:link,
|
42
|
+
:visited {
|
43
|
+
color: #6C8C22;
|
44
|
+
text-decoration: none;
|
45
|
+
}
|
46
|
+
|
47
|
+
:link:hover,
|
48
|
+
:visited:hover {
|
49
|
+
border-bottom: 1px dotted #6C8C22;
|
50
|
+
}
|
51
|
+
|
52
|
+
code,
|
53
|
+
pre {
|
54
|
+
font-family: "Source Code Pro", Monaco, monospace;
|
55
|
+
}
|
56
|
+
|
57
|
+
/* @group Generic Classes */
|
58
|
+
|
59
|
+
.initially-hidden {
|
60
|
+
display: none;
|
61
|
+
}
|
62
|
+
|
63
|
+
#search-field {
|
64
|
+
width: 98%;
|
65
|
+
background: white;
|
66
|
+
border: none;
|
67
|
+
height: 1.5em;
|
68
|
+
-webkit-border-radius: 4px;
|
69
|
+
-moz-border-radius: 4px;
|
70
|
+
border-radius: 4px;
|
71
|
+
text-align: left;
|
72
|
+
}
|
73
|
+
#search-field:focus {
|
74
|
+
background: #f1edba;
|
75
|
+
}
|
76
|
+
#search-field:-moz-placeholder,
|
77
|
+
#search-field::-webkit-input-placeholder {
|
78
|
+
font-weight: bold;
|
79
|
+
color: #666;
|
80
|
+
}
|
81
|
+
|
82
|
+
.missing-docs {
|
83
|
+
font-size: 120%;
|
84
|
+
background: white url(images/wrench_orange.png) no-repeat 4px center;
|
85
|
+
color: #ccc;
|
86
|
+
line-height: 2em;
|
87
|
+
border: 1px solid #d00;
|
88
|
+
opacity: 1;
|
89
|
+
padding-left: 20px;
|
90
|
+
text-indent: 24px;
|
91
|
+
letter-spacing: 3px;
|
92
|
+
font-weight: bold;
|
93
|
+
-webkit-border-radius: 5px;
|
94
|
+
-moz-border-radius: 5px;
|
95
|
+
}
|
96
|
+
|
97
|
+
.target-section {
|
98
|
+
border: 2px solid #dcce90;
|
99
|
+
border-left-width: 8px;
|
100
|
+
padding: 0 1em;
|
101
|
+
background: #fff3c2;
|
102
|
+
}
|
103
|
+
|
104
|
+
/* @end */
|
105
|
+
|
106
|
+
/* @group Index Page, Standalone file pages */
|
107
|
+
.table-of-contents ul {
|
108
|
+
margin: 1em;
|
109
|
+
list-style: none;
|
110
|
+
}
|
111
|
+
|
112
|
+
.table-of-contents ul ul {
|
113
|
+
margin-top: 0.25em;
|
114
|
+
}
|
115
|
+
|
116
|
+
.table-of-contents ul :link,
|
117
|
+
.table-of-contents ul :visited {
|
118
|
+
font-size: 16px;
|
119
|
+
}
|
120
|
+
|
121
|
+
.table-of-contents li {
|
122
|
+
margin-bottom: 0.25em;
|
123
|
+
}
|
124
|
+
|
125
|
+
.table-of-contents li .toc-toggle {
|
126
|
+
width: 16px;
|
127
|
+
height: 16px;
|
128
|
+
background: url(images/add.png) no-repeat;
|
129
|
+
}
|
130
|
+
|
131
|
+
.table-of-contents li .toc-toggle.open {
|
132
|
+
background: url(images/delete.png) no-repeat;
|
133
|
+
}
|
134
|
+
|
135
|
+
/* @end */
|
136
|
+
|
137
|
+
/* @group Top-Level Structure */
|
138
|
+
|
139
|
+
nav {
|
140
|
+
float: left;
|
141
|
+
width: 260px;
|
142
|
+
font-family: Helvetica, sans-serif;
|
143
|
+
font-size: 14px;
|
144
|
+
}
|
145
|
+
|
146
|
+
main {
|
147
|
+
display: block;
|
148
|
+
margin: 0 2em 5em 260px;
|
149
|
+
padding-left: 20px;
|
150
|
+
min-width: 340px;
|
151
|
+
font-size: 16px;
|
152
|
+
}
|
153
|
+
|
154
|
+
main h1,
|
155
|
+
main h2,
|
156
|
+
main h3,
|
157
|
+
main h4,
|
158
|
+
main h5,
|
159
|
+
main h6 {
|
160
|
+
font-family: Helvetica, sans-serif;
|
161
|
+
}
|
162
|
+
|
163
|
+
.table-of-contents main {
|
164
|
+
margin-left: 2em;
|
165
|
+
}
|
166
|
+
|
167
|
+
#validator-badges {
|
168
|
+
clear: both;
|
169
|
+
margin: 1em 1em 2em;
|
170
|
+
font-size: smaller;
|
171
|
+
}
|
172
|
+
|
173
|
+
/* @end */
|
174
|
+
|
175
|
+
/* @group navigation */
|
176
|
+
nav {
|
177
|
+
margin-bottom: 1em;
|
178
|
+
}
|
179
|
+
|
180
|
+
nav .nav-section {
|
181
|
+
margin-top: 2em;
|
182
|
+
border-top: 2px solid #aaa;
|
183
|
+
font-size: 90%;
|
184
|
+
overflow: hidden;
|
185
|
+
}
|
186
|
+
|
187
|
+
nav h2 {
|
188
|
+
margin: 0;
|
189
|
+
padding: 2px 8px 2px 8px;
|
190
|
+
background-color: #e8e8e8;
|
191
|
+
color: #555;
|
192
|
+
font-size: 125%;
|
193
|
+
text-align: center;
|
194
|
+
}
|
195
|
+
|
196
|
+
nav h3 {
|
197
|
+
margin: 0;
|
198
|
+
padding: 2px 8px 2px 8px;
|
199
|
+
text-align: right;
|
200
|
+
background-color: #e8e8e8;
|
201
|
+
color: #555;
|
202
|
+
}
|
203
|
+
|
204
|
+
nav ul,
|
205
|
+
nav dl,
|
206
|
+
nav p {
|
207
|
+
padding: 4px 8px 0;
|
208
|
+
list-style: none;
|
209
|
+
}
|
210
|
+
|
211
|
+
#project-navigation .nav-section {
|
212
|
+
margin: 0;
|
213
|
+
border-top: 0;
|
214
|
+
}
|
215
|
+
|
216
|
+
#home-section h2,
|
217
|
+
#home-section h3 {
|
218
|
+
text-align: center;
|
219
|
+
}
|
220
|
+
|
221
|
+
#search-section {
|
222
|
+
margin-top: 0;
|
223
|
+
border-top: 0;
|
224
|
+
}
|
225
|
+
|
226
|
+
#search-field-wrapper {
|
227
|
+
border-top: 1px solid #aaa;
|
228
|
+
border-bottom: 1px solid #aaa;
|
229
|
+
padding: 3px 8px;
|
230
|
+
background-color: #e8e8e8;
|
231
|
+
color: #555;
|
232
|
+
}
|
233
|
+
|
234
|
+
ul.link-list li {
|
235
|
+
white-space: nowrap;
|
236
|
+
line-height: 1.4em;
|
237
|
+
}
|
238
|
+
|
239
|
+
ul.link-list .type {
|
240
|
+
font-size: 8px;
|
241
|
+
text-transform: uppercase;
|
242
|
+
color: white;
|
243
|
+
background: #969696;
|
244
|
+
padding: 2px 4px;
|
245
|
+
-webkit-border-radius: 5px;
|
246
|
+
}
|
247
|
+
|
248
|
+
.calls-super {
|
249
|
+
background: url(images/arrow_up.png) no-repeat right center;
|
250
|
+
}
|
251
|
+
|
252
|
+
/* @end */
|
253
|
+
|
254
|
+
/* @group Documentation Section */
|
255
|
+
main {
|
256
|
+
color: #333;
|
257
|
+
}
|
258
|
+
|
259
|
+
main > h1:first-child,
|
260
|
+
main > h2:first-child,
|
261
|
+
main > h3:first-child,
|
262
|
+
main > h4:first-child,
|
263
|
+
main > h5:first-child,
|
264
|
+
main > h6:first-child {
|
265
|
+
margin-top: 0px;
|
266
|
+
}
|
267
|
+
|
268
|
+
main sup {
|
269
|
+
vertical-align: super;
|
270
|
+
font-size: 0.8em;
|
271
|
+
}
|
272
|
+
|
273
|
+
/* The heading with the class name */
|
274
|
+
main h1[class] {
|
275
|
+
margin-top: 0;
|
276
|
+
margin-bottom: 1em;
|
277
|
+
font-size: 2em;
|
278
|
+
color: #6C8C22;
|
279
|
+
}
|
280
|
+
|
281
|
+
main h1 {
|
282
|
+
margin: 2em 0 0.5em;
|
283
|
+
font-size: 1.7em;
|
284
|
+
}
|
285
|
+
|
286
|
+
main h2 {
|
287
|
+
margin: 2em 0 0.5em;
|
288
|
+
font-size: 1.5em;
|
289
|
+
}
|
290
|
+
|
291
|
+
main h3 {
|
292
|
+
margin: 2em 0 0.5em;
|
293
|
+
font-size: 1.2em;
|
294
|
+
}
|
295
|
+
|
296
|
+
main h4 {
|
297
|
+
margin: 2em 0 0.5em;
|
298
|
+
font-size: 1.1em;
|
299
|
+
}
|
300
|
+
|
301
|
+
main h5 {
|
302
|
+
margin: 2em 0 0.5em;
|
303
|
+
font-size: 1em;
|
304
|
+
}
|
305
|
+
|
306
|
+
main h6 {
|
307
|
+
margin: 2em 0 0.5em;
|
308
|
+
font-size: 1em;
|
309
|
+
}
|
310
|
+
|
311
|
+
main p {
|
312
|
+
margin: 0 0 0.5em;
|
313
|
+
line-height: 1.4em;
|
314
|
+
}
|
315
|
+
|
316
|
+
main pre {
|
317
|
+
margin: 1.2em 0.5em;
|
318
|
+
padding: 1em;
|
319
|
+
font-size: 0.8em;
|
320
|
+
}
|
321
|
+
|
322
|
+
main hr {
|
323
|
+
margin: 1.5em 1em;
|
324
|
+
border: 2px solid #ddd;
|
325
|
+
}
|
326
|
+
|
327
|
+
main blockquote {
|
328
|
+
margin: 0 2em 1.2em 1.2em;
|
329
|
+
padding-left: 0.5em;
|
330
|
+
border-left: 2px solid #ddd;
|
331
|
+
}
|
332
|
+
|
333
|
+
main ol,
|
334
|
+
main ul {
|
335
|
+
margin: 1em 2em;
|
336
|
+
}
|
337
|
+
|
338
|
+
main li > p {
|
339
|
+
margin-bottom: 0.5em;
|
340
|
+
}
|
341
|
+
|
342
|
+
main dl {
|
343
|
+
margin: 1em 0.5em;
|
344
|
+
}
|
345
|
+
|
346
|
+
main dt {
|
347
|
+
margin-bottom: 0.5em;
|
348
|
+
font-weight: bold;
|
349
|
+
}
|
350
|
+
|
351
|
+
main dd {
|
352
|
+
margin: 0 1em 1em 0.5em;
|
353
|
+
}
|
354
|
+
|
355
|
+
main header h2 {
|
356
|
+
margin-top: 2em;
|
357
|
+
border-width: 0;
|
358
|
+
border-top: 4px solid #bbb;
|
359
|
+
font-size: 130%;
|
360
|
+
}
|
361
|
+
|
362
|
+
main header h3 {
|
363
|
+
margin: 2em 0 1.5em;
|
364
|
+
border-width: 0;
|
365
|
+
border-top: 3px solid #bbb;
|
366
|
+
font-size: 120%;
|
367
|
+
}
|
368
|
+
|
369
|
+
.documentation-section-title {
|
370
|
+
position: relative;
|
371
|
+
}
|
372
|
+
.documentation-section-title .section-click-top {
|
373
|
+
position: absolute;
|
374
|
+
top: 6px;
|
375
|
+
left: 12px;
|
376
|
+
font-size: 10px;
|
377
|
+
color: #9b9877;
|
378
|
+
visibility: hidden;
|
379
|
+
padding-left: 0.5px;
|
380
|
+
}
|
381
|
+
|
382
|
+
.documentation-section-title:hover .section-click-top {
|
383
|
+
visibility: visible;
|
384
|
+
}
|
385
|
+
|
386
|
+
.constants-list > dl {
|
387
|
+
margin: 1em 0 2em;
|
388
|
+
border: 0;
|
389
|
+
}
|
390
|
+
|
391
|
+
.constants-list > dl dt {
|
392
|
+
margin-bottom: 0.75em;
|
393
|
+
padding-left: 0;
|
394
|
+
font-family: "Source Code Pro", Monaco, monospace;
|
395
|
+
font-size: 110%;
|
396
|
+
}
|
397
|
+
|
398
|
+
.constants-list > dl dt a {
|
399
|
+
color: inherit;
|
400
|
+
}
|
401
|
+
|
402
|
+
.constants-list > dl dd {
|
403
|
+
margin: 0 0 2em 0;
|
404
|
+
padding: 0;
|
405
|
+
color: #666;
|
406
|
+
}
|
407
|
+
|
408
|
+
.documentation-section h2 {
|
409
|
+
position: relative;
|
410
|
+
}
|
411
|
+
|
412
|
+
.documentation-section h2 a {
|
413
|
+
position: absolute;
|
414
|
+
top: 8px;
|
415
|
+
right: 10px;
|
416
|
+
font-size: 12px;
|
417
|
+
color: #9b9877;
|
418
|
+
visibility: hidden;
|
419
|
+
}
|
420
|
+
|
421
|
+
.documentation-section h2:hover a {
|
422
|
+
visibility: visible;
|
423
|
+
}
|
424
|
+
|
425
|
+
/* @group Method Details */
|
426
|
+
|
427
|
+
main .method-source-code {
|
428
|
+
display: none;
|
429
|
+
}
|
430
|
+
|
431
|
+
main .method-description .method-calls-super {
|
432
|
+
color: #333;
|
433
|
+
font-weight: bold;
|
434
|
+
}
|
435
|
+
|
436
|
+
main .method-detail {
|
437
|
+
margin-bottom: 2.5em;
|
438
|
+
cursor: pointer;
|
439
|
+
}
|
440
|
+
|
441
|
+
main .method-detail:target {
|
442
|
+
margin-left: -10px;
|
443
|
+
border-left: 10px solid #f1edba;
|
444
|
+
}
|
445
|
+
|
446
|
+
main .method-heading {
|
447
|
+
position: relative;
|
448
|
+
font-family: "Source Code Pro", Monaco, monospace;
|
449
|
+
font-size: 110%;
|
450
|
+
font-weight: bold;
|
451
|
+
color: #333;
|
452
|
+
}
|
453
|
+
main .method-heading :link,
|
454
|
+
main .method-heading :visited {
|
455
|
+
color: inherit;
|
456
|
+
}
|
457
|
+
main .method-click-advice {
|
458
|
+
position: absolute;
|
459
|
+
top: 2px;
|
460
|
+
right: 5px;
|
461
|
+
font-size: 12px;
|
462
|
+
color: #9b9877;
|
463
|
+
visibility: hidden;
|
464
|
+
padding-right: 20px;
|
465
|
+
line-height: 20px;
|
466
|
+
background: url(images/zoom.png) no-repeat right top;
|
467
|
+
}
|
468
|
+
main .method-heading:hover .method-click-advice {
|
469
|
+
visibility: visible;
|
470
|
+
}
|
471
|
+
|
472
|
+
main .method-alias .method-heading {
|
473
|
+
color: #666;
|
474
|
+
}
|
475
|
+
|
476
|
+
main .method-description,
|
477
|
+
main .aliases {
|
478
|
+
margin-top: 0.75em;
|
479
|
+
color: #333;
|
480
|
+
}
|
481
|
+
|
482
|
+
main .aliases {
|
483
|
+
padding-top: 4px;
|
484
|
+
font-style: italic;
|
485
|
+
cursor: default;
|
486
|
+
}
|
487
|
+
main .method-description ul {
|
488
|
+
margin-left: 1.5em;
|
489
|
+
}
|
490
|
+
|
491
|
+
main #attribute-method-details .method-detail:hover {
|
492
|
+
background-color: transparent;
|
493
|
+
cursor: default;
|
494
|
+
}
|
495
|
+
main .attribute-access-type {
|
496
|
+
text-transform: uppercase;
|
497
|
+
padding: 0 1em;
|
498
|
+
}
|
499
|
+
/* @end */
|
500
|
+
|
501
|
+
/* @end */
|
502
|
+
|
503
|
+
/* @group Source Code */
|
504
|
+
|
505
|
+
pre {
|
506
|
+
margin: 0.5em 0;
|
507
|
+
border: 1px dashed #999;
|
508
|
+
padding: 0.5em;
|
509
|
+
background: #262626;
|
510
|
+
color: white;
|
511
|
+
overflow: auto;
|
512
|
+
}
|
513
|
+
|
514
|
+
.ruby-constant { color: #7fffd4; background: transparent; }
|
515
|
+
.ruby-keyword { color: #00ffff; background: transparent; }
|
516
|
+
.ruby-ivar { color: #eedd82; background: transparent; }
|
517
|
+
.ruby-operator { color: #00ffee; background: transparent; }
|
518
|
+
.ruby-identifier { color: #ffdead; background: transparent; }
|
519
|
+
.ruby-node { color: #ffa07a; background: transparent; }
|
520
|
+
.ruby-comment { color: #dc0000; background: transparent; }
|
521
|
+
.ruby-regexp { color: #ffa07a; background: transparent; }
|
522
|
+
.ruby-value { color: #7fffd4; background: transparent; }
|
523
|
+
|
524
|
+
/* @end */
|
525
|
+
|
526
|
+
|
527
|
+
/* @group search results */
|
528
|
+
#search-results {
|
529
|
+
font-family: Lato, sans-serif;
|
530
|
+
font-weight: 300;
|
531
|
+
}
|
532
|
+
|
533
|
+
#search-results .search-match {
|
534
|
+
font-family: Helvetica, sans-serif;
|
535
|
+
font-weight: normal;
|
536
|
+
}
|
537
|
+
|
538
|
+
#search-results .search-selected {
|
539
|
+
background: #e8e8e8;
|
540
|
+
border-bottom: 1px solid transparent;
|
541
|
+
}
|
542
|
+
|
543
|
+
#search-results li {
|
544
|
+
list-style: none;
|
545
|
+
border-bottom: 1px solid #aaa;
|
546
|
+
margin-bottom: 0.5em;
|
547
|
+
}
|
548
|
+
|
549
|
+
#search-results li:last-child {
|
550
|
+
border-bottom: none;
|
551
|
+
margin-bottom: 0;
|
552
|
+
}
|
553
|
+
|
554
|
+
#search-results li p {
|
555
|
+
padding: 0;
|
556
|
+
margin: 0.5em;
|
557
|
+
}
|
558
|
+
|
559
|
+
#search-results .search-namespace {
|
560
|
+
font-weight: bold;
|
561
|
+
}
|
562
|
+
|
563
|
+
#search-results li em {
|
564
|
+
background: yellow;
|
565
|
+
font-style: normal;
|
566
|
+
}
|
567
|
+
|
568
|
+
#search-results pre {
|
569
|
+
margin: 0.5em;
|
570
|
+
font-family: "Source Code Pro", Monaco, monospace;
|
571
|
+
}
|
572
|
+
|
573
|
+
/* @end */
|
574
|
+
|
@@ -0,0 +1,90 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta charset="UTF-8">
|
6
|
+
|
7
|
+
<title>Table of Contents - RDoc Documentation</title>
|
8
|
+
|
9
|
+
<link href="./fonts.css" rel="stylesheet">
|
10
|
+
<link href="./rdoc.css" rel="stylesheet">
|
11
|
+
|
12
|
+
<script type="text/javascript">
|
13
|
+
var rdoc_rel_prefix = "./";
|
14
|
+
</script>
|
15
|
+
|
16
|
+
<script src="./js/jquery.js"></script>
|
17
|
+
<script src="./js/navigation.js"></script>
|
18
|
+
<script src="./js/search_index.js"></script>
|
19
|
+
<script src="./js/search.js"></script>
|
20
|
+
<script src="./js/searcher.js"></script>
|
21
|
+
<script src="./js/darkfish.js"></script>
|
22
|
+
|
23
|
+
|
24
|
+
<body id="top" class="table-of-contents">
|
25
|
+
<main role="main">
|
26
|
+
<h1 class="class">Table of Contents - RDoc Documentation</h1>
|
27
|
+
|
28
|
+
|
29
|
+
<h2 id="classes">Classes and Modules</h2>
|
30
|
+
<ul>
|
31
|
+
<li class="module">
|
32
|
+
<a href="Ionian.html">Ionian</a>
|
33
|
+
</li>
|
34
|
+
<li class="module">
|
35
|
+
<a href="Ionian/IO.html">Ionian::IO</a>
|
36
|
+
</li>
|
37
|
+
</ul>
|
38
|
+
|
39
|
+
<h2 id="methods">Methods</h2>
|
40
|
+
<ul>
|
41
|
+
|
42
|
+
<li class="method">
|
43
|
+
<a href="Ionian/IO.html#method-c-extended">::extended</a>
|
44
|
+
—
|
45
|
+
<span class="container">Ionian::IO</span>
|
46
|
+
|
47
|
+
<li class="method">
|
48
|
+
<a href="Ionian/IO.html#method-i-initialize_ionian">#initialize_ionian</a>
|
49
|
+
—
|
50
|
+
<span class="container">Ionian::IO</span>
|
51
|
+
|
52
|
+
<li class="method">
|
53
|
+
<a href="Ionian/IO.html#method-i-match">#match</a>
|
54
|
+
—
|
55
|
+
<span class="container">Ionian::IO</span>
|
56
|
+
|
57
|
+
<li class="method">
|
58
|
+
<a href="Ionian/IO.html#method-i-purge">#purge</a>
|
59
|
+
—
|
60
|
+
<span class="container">Ionian::IO</span>
|
61
|
+
|
62
|
+
<li class="method">
|
63
|
+
<a href="Ionian/IO.html#method-i-read_match">#read_match</a>
|
64
|
+
—
|
65
|
+
<span class="container">Ionian::IO</span>
|
66
|
+
|
67
|
+
<li class="method">
|
68
|
+
<a href="Ionian/IO.html#method-i-register_observer">#register_observer</a>
|
69
|
+
—
|
70
|
+
<span class="container">Ionian::IO</span>
|
71
|
+
|
72
|
+
<li class="method">
|
73
|
+
<a href="Ionian/IO.html#method-i-run_match">#run_match</a>
|
74
|
+
—
|
75
|
+
<span class="container">Ionian::IO</span>
|
76
|
+
|
77
|
+
<li class="method">
|
78
|
+
<a href="Ionian/IO.html#method-i-unregister_observer">#unregister_observer</a>
|
79
|
+
—
|
80
|
+
<span class="container">Ionian::IO</span>
|
81
|
+
</ul>
|
82
|
+
</main>
|
83
|
+
|
84
|
+
|
85
|
+
<footer id="validator-badges" role="contentinfo">
|
86
|
+
<p><a href="http://validator.w3.org/check/referer">Validate</a>
|
87
|
+
<p>Generated by <a href="http://rdoc.rubyforge.org">RDoc</a> 4.1.0.preview.1.
|
88
|
+
<p>Based on <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
89
|
+
</footer>
|
90
|
+
|