wwwjdic 15.0.0 → 16.0.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/CHANGELOG +13 -0
- data/Gemfile +4 -0
- data/README.md +6 -7
- data/Rakefile +4 -0
- data/examples/basics.rb +4 -0
- data/examples/translate.rb +26 -0
- data/examples/uri.rb +16 -0
- data/html/CHANGELOG.html +37 -30
- data/html/COPYING_md.html +22 -30
- data/html/Gemfile.html +25 -31
- data/html/Object.html +825 -63
- data/html/README_md.html +27 -33
- data/html/Rakefile.html +25 -31
- data/html/WWWJDic.html +42 -124
- data/html/WWWJDic/ParsableDuckType.html +35 -57
- data/html/WWWJDic/Parser.html +48 -90
- data/html/WWWJDic/Parsers.html +28 -36
- data/html/WWWJDic/Parsers/Dict.html +47 -73
- data/html/WWWJDic/Parsers/Display.html +42 -68
- data/html/WWWJDic/Parsers/Key.html +42 -68
- data/html/WWWJDic/Parsers/Search.html +38 -61
- data/html/WWWJDic/Parsers/Server.html +42 -68
- data/html/WWWJDic/Splitter.html +76 -173
- data/html/WWWJDic/Utils.html +28 -36
- data/html/WWWJDic/Utils/Downloader.html +28 -36
- data/html/WWWJDic/Utils/Downloader/Downloader.html +41 -80
- data/html/WWWJDic/Utils/Raisers.html +42 -96
- data/html/WWWJDic/WWWJDic.html +160 -342
- data/html/copyright_md.html +22 -30
- data/html/created.rid +32 -54
- data/html/css/rdoc.css +1 -1
- data/html/index.html +26 -51
- data/html/js/darkfish.js +84 -84
- data/html/js/navigation.js.gz +0 -0
- data/html/js/search.js +110 -110
- data/html/js/search_index.js +1 -1
- data/html/js/search_index.js.gz +0 -0
- data/html/js/searcher.js +229 -229
- data/html/js/searcher.js.gz +0 -0
- data/html/table_of_contents.html +153 -161
- data/lib/wwwjdic.rb +7 -4
- data/lib/wwwjdic/application.rb +52 -25
- data/lib/wwwjdic/constants.rb +33 -3
- data/lib/wwwjdic/locales/de.yml +2 -0
- data/lib/wwwjdic/locales/en.yml +2 -0
- data/lib/wwwjdic/locales/es.yml +2 -0
- data/lib/wwwjdic/locales/fr.yml +2 -0
- data/lib/wwwjdic/locales/hu.yml +2 -0
- data/lib/wwwjdic/locales/it.yml +2 -0
- data/lib/wwwjdic/locales/ja.yml +3 -1
- data/lib/wwwjdic/locales/nl.yml +2 -0
- data/lib/wwwjdic/locales/ru.yml +2 -0
- data/lib/wwwjdic/locales/sl.yml +2 -0
- data/lib/wwwjdic/locales/sv.yml +2 -0
- data/lib/wwwjdic/parser.rb +7 -4
- data/lib/wwwjdic/parsers/dict.rb +4 -1
- data/lib/wwwjdic/parsers/display.rb +4 -1
- data/lib/wwwjdic/parsers/key.rb +4 -1
- data/lib/wwwjdic/parsers/search.rb +4 -0
- data/lib/wwwjdic/parsers/server.rb +4 -1
- data/lib/wwwjdic/utils/downloader.rb +7 -8
- data/lib/wwwjdic/utils/raisers.rb +7 -13
- data/lib/wwwjdic/utils/splitter.rb +18 -9
- data/lib/wwwjdic/version.rb +5 -1
- data/test/test_helper.rb +4 -0
- data/test/test_wwwjdic.rb +4 -0
- data/test/wwwjdic/locales/de.yml +2 -0
- data/test/wwwjdic/locales/en.yml +2 -0
- data/test/wwwjdic/locales/es.yml +2 -0
- data/test/wwwjdic/locales/fr.yml +2 -0
- data/test/wwwjdic/locales/hu.yml +2 -0
- data/test/wwwjdic/locales/it.yml +2 -0
- data/test/wwwjdic/locales/ja.yml +2 -0
- data/test/wwwjdic/locales/nl.yml +2 -0
- data/test/wwwjdic/locales/ru.yml +2 -0
- data/test/wwwjdic/locales/sl.yml +2 -0
- data/test/wwwjdic/locales/sv.yml +2 -0
- data/test/wwwjdic/locales/test_locales.rb +35 -19
- data/test/wwwjdic/parsers/test_dict.rb +62 -36
- data/test/wwwjdic/parsers/test_display.rb +4 -0
- data/test/wwwjdic/parsers/test_key.rb +4 -0
- data/test/wwwjdic/parsers/test_server.rb +4 -0
- data/test/wwwjdic/test_application.rb +196 -148
- data/test/wwwjdic/test_parsable_duck_type.rb +4 -3
- data/test/wwwjdic/utils/test_downloader.rb +4 -0
- data/test/wwwjdic/utils/test_raisers.rb +42 -27
- data/wwwjdic.gemspec +14 -11
- metadata +19 -33
data/html/js/searcher.js.gz
CHANGED
Binary file
|
data/html/table_of_contents.html
CHANGED
@@ -4,332 +4,195 @@
|
|
4
4
|
<head>
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
|
7
|
-
<title>Table of Contents - wwwjdic
|
7
|
+
<title>Table of Contents - wwwjdic 16.0.0</title>
|
8
8
|
|
9
9
|
<script type="text/javascript">
|
10
10
|
var rdoc_rel_prefix = "./";
|
11
11
|
var index_rel_prefix = "./";
|
12
12
|
</script>
|
13
13
|
|
14
|
-
<script
|
15
|
-
<script
|
16
|
-
<script
|
17
|
-
<script
|
18
|
-
<script
|
14
|
+
<script src="./js/navigation.js" defer></script>
|
15
|
+
<script src="./js/search.js" defer></script>
|
16
|
+
<script src="./js/search_index.js" defer></script>
|
17
|
+
<script src="./js/searcher.js" defer></script>
|
18
|
+
<script src="./js/darkfish.js" defer></script>
|
19
19
|
|
20
20
|
<link href="./css/fonts.css" rel="stylesheet">
|
21
21
|
<link href="./css/rdoc.css" rel="stylesheet">
|
22
22
|
|
23
23
|
|
24
|
-
|
25
|
-
|
26
|
-
<body class="table-of-contents" id="top">
|
24
|
+
<body id="top" class="table-of-contents">
|
27
25
|
<main role="main">
|
28
|
-
<h1 class="class">Table of Contents - wwwjdic
|
29
|
-
|
30
|
-
|
26
|
+
<h1 class="class">Table of Contents - wwwjdic 16.0.0</h1>
|
31
27
|
|
32
28
|
<h2 id="pages">Pages</h2>
|
33
29
|
<ul>
|
34
|
-
|
35
30
|
<li class="file">
|
36
31
|
<a href="CHANGELOG.html">CHANGELOG</a>
|
37
32
|
|
38
33
|
<ul>
|
39
|
-
|
34
|
+
<li><a href="CHANGELOG.html#label-Version+16.0.0">Version 16.0.0</a>
|
40
35
|
<li><a href="CHANGELOG.html#label-Version+15.0.0">Version 15.0.0</a>
|
41
|
-
|
42
36
|
<li><a href="CHANGELOG.html#label-Version+14.0.0">Version 14.0.0</a>
|
43
|
-
|
44
37
|
<li><a href="CHANGELOG.html#label-Version+13.0.1">Version 13.0.1</a>
|
45
|
-
|
46
38
|
<li><a href="CHANGELOG.html#label-Version+13.0.0">Version 13.0.0</a>
|
47
|
-
|
48
39
|
<li><a href="CHANGELOG.html#label-Version+12.0.0">Version 12.0.0</a>
|
49
|
-
|
50
40
|
<li><a href="CHANGELOG.html#label-Version+11.0.0">Version 11.0.0</a>
|
51
|
-
|
52
41
|
<li><a href="CHANGELOG.html#label-Version+10.0.0">Version 10.0.0</a>
|
53
|
-
|
54
42
|
<li><a href="CHANGELOG.html#label-Version+9.3.0">Version 9.3.0</a>
|
55
|
-
|
56
43
|
<li><a href="CHANGELOG.html#label-Version+9.2.0">Version 9.2.0</a>
|
57
|
-
|
58
44
|
<li><a href="CHANGELOG.html#label-Version+9.1.0">Version 9.1.0</a>
|
59
|
-
|
60
45
|
<li><a href="CHANGELOG.html#label-Version+9.0.4">Version 9.0.4</a>
|
61
|
-
|
62
46
|
<li><a href="CHANGELOG.html#label-Version+9.0.3">Version 9.0.3</a>
|
63
|
-
|
64
47
|
<li><a href="CHANGELOG.html#label-Version+9.0.2">Version 9.0.2</a>
|
65
|
-
|
66
48
|
<li><a href="CHANGELOG.html#label-Version+9.0.2-pre">Version 9.0.2-pre</a>
|
67
|
-
|
68
49
|
<li><a href="CHANGELOG.html#label-Version+9.0.1">Version 9.0.1</a>
|
69
|
-
|
70
50
|
<li><a href="CHANGELOG.html#label-Version+8.0.1">Version 8.0.1</a>
|
71
|
-
|
72
51
|
<li><a href="CHANGELOG.html#label-Version+7.1.3.pre">Version 7.1.3.pre</a>
|
73
|
-
|
74
52
|
<li><a href="CHANGELOG.html#label-Version+7.1.2">Version 7.1.2</a>
|
75
|
-
|
76
53
|
<li><a href="CHANGELOG.html#label-Version+7.1.1">Version 7.1.1</a>
|
77
|
-
|
78
54
|
<li><a href="CHANGELOG.html#label-Version+7.1.0">Version 7.1.0</a>
|
79
|
-
|
80
55
|
<li><a href="CHANGELOG.html#label-Version+7.0.0">Version 7.0.0</a>
|
81
|
-
|
82
56
|
<li><a href="CHANGELOG.html#label-Version+7.0.0.pre">Version 7.0.0.pre</a>
|
83
|
-
|
84
57
|
<li><a href="CHANGELOG.html#label-Version+6.2.0">Version 6.2.0</a>
|
85
|
-
|
86
58
|
<li><a href="CHANGELOG.html#label-Version+6.1.1">Version 6.1.1</a>
|
87
|
-
|
88
59
|
<li><a href="CHANGELOG.html#label-Version+6.0.1">Version 6.0.1</a>
|
89
|
-
|
90
60
|
<li><a href="CHANGELOG.html#label-Version+5.4.0">Version 5.4.0</a>
|
91
|
-
|
92
61
|
<li><a href="CHANGELOG.html#label-Version+5.2.2">Version 5.2.2</a>
|
93
|
-
|
94
62
|
<li><a href="CHANGELOG.html#label-Version+5.1.3">Version 5.1.3</a>
|
95
|
-
|
96
63
|
<li><a href="CHANGELOG.html#label-Version+2.11.2.pre.pre">Version 2.11.2.pre.pre</a>
|
97
|
-
|
98
64
|
<li><a href="CHANGELOG.html#label-Version+2.11.2.pre">Version 2.11.2.pre</a>
|
99
|
-
|
100
65
|
<li><a href="CHANGELOG.html#label-Version+2.11.1">Version 2.11.1</a>
|
101
|
-
|
102
66
|
<li><a href="CHANGELOG.html#label-Version+2.3.1">Version 2.3.1</a>
|
103
|
-
|
104
67
|
<li><a href="CHANGELOG.html#label-Version+2.2.15">Version 2.2.15</a>
|
105
|
-
|
106
68
|
<li><a href="CHANGELOG.html#label-Version+2.2.13">Version 2.2.13</a>
|
107
|
-
|
108
69
|
<li><a href="CHANGELOG.html#label-Version+2.2.11">Version 2.2.11</a>
|
109
|
-
|
110
70
|
<li><a href="CHANGELOG.html#label-Version+2.1.9">Version 2.1.9</a>
|
111
|
-
|
112
71
|
<li><a href="CHANGELOG.html#label-Version+2.1.4">Version 2.1.4</a>
|
113
|
-
|
114
72
|
<li><a href="CHANGELOG.html#label-Version+2.1.3">Version 2.1.3</a>
|
115
|
-
|
116
73
|
<li><a href="CHANGELOG.html#label-Version+2.1.1">Version 2.1.1</a>
|
117
|
-
|
118
74
|
<li><a href="CHANGELOG.html#label-Version+1.2.4">Version 1.2.4</a>
|
119
|
-
|
120
75
|
<li><a href="CHANGELOG.html#label-Version+1.2.2">Version 1.2.2</a>
|
121
|
-
|
122
76
|
<li><a href="CHANGELOG.html#label-Version+1.1.2">Version 1.1.2</a>
|
123
|
-
|
124
77
|
<li><a href="CHANGELOG.html#label-Version+0.0.0">Version 0.0.0</a>
|
125
|
-
|
126
78
|
</ul>
|
127
|
-
|
128
79
|
</li>
|
129
|
-
|
130
80
|
<li class="file">
|
131
81
|
<a href="COPYING_md.html">COPYING</a>
|
132
82
|
|
133
83
|
<ul>
|
134
|
-
|
135
84
|
<li><a href="COPYING_md.html#label-GNU+GENERAL+PUBLIC+LICENSE">GNU GENERAL PUBLIC LICENSE</a>
|
136
|
-
|
137
85
|
<li><a href="COPYING_md.html#label-Preamble">Preamble</a>
|
138
|
-
|
139
86
|
<li><a href="COPYING_md.html#label-TERMS+AND+CONDITIONS">TERMS AND CONDITIONS</a>
|
140
|
-
|
141
87
|
<li><a href="COPYING_md.html#label-0.+Definitions.">0. Definitions.</a>
|
142
|
-
|
143
88
|
<li><a href="COPYING_md.html#label-1.+Source+Code.">1. Source Code.</a>
|
144
|
-
|
145
89
|
<li><a href="COPYING_md.html#label-2.+Basic+Permissions.">2. Basic Permissions.</a>
|
146
|
-
|
147
90
|
<li><a href="COPYING_md.html#label-3.+Protecting+Users-27+Legal+Rights+From+Anti-Circumvention+Law.">3. Protecting Users' Legal Rights From Anti-Circumvention Law.</a>
|
148
|
-
|
149
91
|
<li><a href="COPYING_md.html#label-4.+Conveying+Verbatim+Copies.">4. Conveying Verbatim Copies.</a>
|
150
|
-
|
151
92
|
<li><a href="COPYING_md.html#label-5.+Conveying+Modified+Source+Versions.">5. Conveying Modified Source Versions.</a>
|
152
|
-
|
153
93
|
<li><a href="COPYING_md.html#label-6.+Conveying+Non-Source+Forms.">6. Conveying Non-Source Forms.</a>
|
154
|
-
|
155
94
|
<li><a href="COPYING_md.html#label-7.+Additional+Terms.">7. Additional Terms.</a>
|
156
|
-
|
157
95
|
<li><a href="COPYING_md.html#label-8.+Termination.">8. Termination.</a>
|
158
|
-
|
159
96
|
<li><a href="COPYING_md.html#label-9.+Acceptance+Not+Required+for+Having+Copies.">9. Acceptance Not Required for Having Copies.</a>
|
160
|
-
|
161
97
|
<li><a href="COPYING_md.html#label-10.+Automatic+Licensing+of+Downstream+Recipients.">10. Automatic Licensing of Downstream Recipients.</a>
|
162
|
-
|
163
98
|
<li><a href="COPYING_md.html#label-11.+Patents.">11. Patents.</a>
|
164
|
-
|
165
99
|
<li><a href="COPYING_md.html#label-12.+No+Surrender+of+Others-27+Freedom.">12. No Surrender of Others' Freedom.</a>
|
166
|
-
|
167
100
|
<li><a href="COPYING_md.html#label-13.+Use+with+the+GNU+Affero+General+Public+License.">13. Use with the GNU Affero General Public License.</a>
|
168
|
-
|
169
101
|
<li><a href="COPYING_md.html#label-14.+Revised+Versions+of+this+License.">14. Revised Versions of this License.</a>
|
170
|
-
|
171
102
|
<li><a href="COPYING_md.html#label-15.+Disclaimer+of+Warranty.">15. Disclaimer of Warranty.</a>
|
172
|
-
|
173
103
|
<li><a href="COPYING_md.html#label-16.+Limitation+of+Liability.">16. Limitation of Liability.</a>
|
174
|
-
|
175
104
|
<li><a href="COPYING_md.html#label-17.+Interpretation+of+Sections+15+and+16.">17. Interpretation of Sections 15 and 16.</a>
|
176
|
-
|
177
105
|
<li><a href="COPYING_md.html#label-How+to+Apply+These+Terms+to+Your+New+Programs">How to Apply These Terms to Your New Programs</a>
|
178
|
-
|
179
106
|
</ul>
|
180
|
-
|
181
107
|
</li>
|
182
|
-
|
183
108
|
<li class="file">
|
184
109
|
<a href="Gemfile.html">Gemfile</a>
|
185
|
-
|
186
110
|
</li>
|
187
|
-
|
188
111
|
<li class="file">
|
189
112
|
<a href="README_md.html">README</a>
|
190
113
|
|
191
114
|
<ul>
|
192
|
-
|
193
115
|
<li><a href="README_md.html#label-WWWJDic">WWWJDic</a>
|
194
|
-
|
195
116
|
<li><a href="README_md.html#label-Table+of+Contents">Table of Contents</a>
|
196
|
-
|
197
117
|
<li><a href="README_md.html#label-Background">Background</a>
|
198
|
-
|
199
118
|
<li><a href="README_md.html#label-Install">Install</a>
|
200
|
-
|
201
119
|
<li><a href="README_md.html#label-Savannah">Savannah</a>
|
202
|
-
|
203
120
|
<li><a href="README_md.html#label-RubyGems">RubyGems</a>
|
204
|
-
|
205
121
|
<li><a href="README_md.html#label-Usage">Usage</a>
|
206
|
-
|
207
122
|
<li><a href="README_md.html#label-Maintainers">Maintainers</a>
|
208
|
-
|
209
123
|
<li><a href="README_md.html#label-Thanks">Thanks</a>
|
210
|
-
|
211
124
|
<li><a href="README_md.html#label-Contributing">Contributing</a>
|
212
|
-
|
213
125
|
<li><a href="README_md.html#label-License">License</a>
|
214
|
-
|
215
126
|
</ul>
|
216
|
-
|
217
127
|
</li>
|
218
|
-
|
219
128
|
<li class="file">
|
220
129
|
<a href="Rakefile.html">Rakefile</a>
|
221
|
-
|
222
130
|
</li>
|
223
|
-
|
224
131
|
<li class="file">
|
225
132
|
<a href="copyright_md.html">copyright</a>
|
226
133
|
|
227
134
|
<ul>
|
228
|
-
|
229
135
|
<li><a href="copyright_md.html#label-Copyright+Notes">Copyright Notes</a>
|
230
|
-
|
231
136
|
<li><a href="copyright_md.html#label-RDoc">RDoc</a>
|
232
|
-
|
233
137
|
<li><a href="copyright_md.html#label-Darkfish+-28darkfish.js+-26+rdoc.css-29">Darkfish (darkfish.js & rdoc.css)</a>
|
234
|
-
|
235
138
|
<li><a href="copyright_md.html#label-Sorce+Code+Pro+Font+-28-26+fonts.css-29">Sorce Code Pro Font (& fonts.css)</a>
|
236
|
-
|
237
139
|
<li><a href="copyright_md.html#label-Lato+Font">Lato Font</a>
|
238
|
-
|
239
140
|
<li><a href="copyright_md.html#label-Silk+Icons">Silk Icons</a>
|
240
|
-
|
241
141
|
<li><a href="copyright_md.html#label-JsonIndex+generator+-28navigation.js+-26+search.js+-26+search_index.js+-26+searcher.js-29">JsonIndex generator (navigation.js & search.js & search_index.js & searcher.js)</a>
|
242
|
-
|
243
142
|
</ul>
|
244
|
-
|
245
143
|
</li>
|
246
|
-
|
247
144
|
</ul>
|
248
145
|
|
249
|
-
|
250
146
|
<h2 id="classes">Classes and Modules</h2>
|
251
147
|
<ul>
|
252
|
-
|
253
148
|
<li class="class">
|
254
149
|
<a href="Object.html">Object</a>
|
255
|
-
|
256
150
|
</li>
|
257
|
-
|
258
151
|
<li class="module">
|
259
152
|
<a href="WWWJDic.html">WWWJDic</a>
|
260
|
-
|
261
153
|
</li>
|
262
|
-
|
263
154
|
<li class="module">
|
264
155
|
<a href="WWWJDic/ParsableDuckType.html">WWWJDic::ParsableDuckType</a>
|
265
|
-
|
266
156
|
</li>
|
267
|
-
|
268
157
|
<li class="class">
|
269
158
|
<a href="WWWJDic/Parser.html">WWWJDic::Parser</a>
|
270
|
-
|
271
159
|
</li>
|
272
|
-
|
273
160
|
<li class="module">
|
274
161
|
<a href="WWWJDic/Parsers.html">WWWJDic::Parsers</a>
|
275
|
-
|
276
162
|
</li>
|
277
|
-
|
278
163
|
<li class="class">
|
279
164
|
<a href="WWWJDic/Parsers/Dict.html">WWWJDic::Parsers::Dict</a>
|
280
|
-
|
281
165
|
</li>
|
282
|
-
|
283
166
|
<li class="class">
|
284
167
|
<a href="WWWJDic/Parsers/Display.html">WWWJDic::Parsers::Display</a>
|
285
|
-
|
286
168
|
</li>
|
287
|
-
|
288
169
|
<li class="class">
|
289
170
|
<a href="WWWJDic/Parsers/Key.html">WWWJDic::Parsers::Key</a>
|
290
|
-
|
291
171
|
</li>
|
292
|
-
|
293
172
|
<li class="class">
|
294
173
|
<a href="WWWJDic/Parsers/Search.html">WWWJDic::Parsers::Search</a>
|
295
|
-
|
296
174
|
</li>
|
297
|
-
|
298
175
|
<li class="class">
|
299
176
|
<a href="WWWJDic/Parsers/Server.html">WWWJDic::Parsers::Server</a>
|
300
|
-
|
301
177
|
</li>
|
302
|
-
|
303
178
|
<li class="class">
|
304
179
|
<a href="WWWJDic/Splitter.html">WWWJDic::Splitter</a>
|
305
|
-
|
306
180
|
</li>
|
307
|
-
|
308
181
|
<li class="module">
|
309
182
|
<a href="WWWJDic/Utils.html">WWWJDic::Utils</a>
|
310
|
-
|
311
183
|
</li>
|
312
|
-
|
313
184
|
<li class="module">
|
314
185
|
<a href="WWWJDic/Utils/Downloader.html">WWWJDic::Utils::Downloader</a>
|
315
|
-
|
316
186
|
</li>
|
317
|
-
|
318
187
|
<li class="class">
|
319
188
|
<a href="WWWJDic/Utils/Downloader/Downloader.html">WWWJDic::Utils::Downloader::Downloader</a>
|
320
|
-
|
321
189
|
</li>
|
322
|
-
|
323
190
|
<li class="module">
|
324
191
|
<a href="WWWJDic/Utils/Raisers.html">WWWJDic::Utils::Raisers</a>
|
325
|
-
|
326
192
|
</li>
|
327
|
-
|
328
193
|
<li class="class">
|
329
194
|
<a href="WWWJDic/WWWJDic.html">WWWJDic::WWWJDic</a>
|
330
|
-
|
331
195
|
</li>
|
332
|
-
|
333
196
|
</ul>
|
334
197
|
|
335
198
|
<h2 id="methods">Methods</h2>
|
@@ -346,9 +209,9 @@
|
|
346
209
|
<span class="container">WWWJDic::Utils::Downloader::Downloader</span>
|
347
210
|
|
348
211
|
<li class="method">
|
349
|
-
<a href="WWWJDic/
|
212
|
+
<a href="WWWJDic/WWWJDic.html#method-c-new">::new</a>
|
350
213
|
—
|
351
|
-
<span class="container">WWWJDic::
|
214
|
+
<span class="container">WWWJDic::WWWJDic</span>
|
352
215
|
|
353
216
|
<li class="method">
|
354
217
|
<a href="WWWJDic/Splitter.html#method-c-new">::new</a>
|
@@ -356,9 +219,9 @@
|
|
356
219
|
<span class="container">WWWJDic::Splitter</span>
|
357
220
|
|
358
221
|
<li class="method">
|
359
|
-
<a href="WWWJDic/
|
222
|
+
<a href="WWWJDic/Parser.html#method-c-new">::new</a>
|
360
223
|
—
|
361
|
-
<span class="container">WWWJDic::
|
224
|
+
<span class="container">WWWJDic::Parser</span>
|
362
225
|
|
363
226
|
<li class="method">
|
364
227
|
<a href="WWWJDic.html#method-c-parser">::parser</a>
|
@@ -406,9 +269,14 @@
|
|
406
269
|
<span class="container">WWWJDic::Splitter</span>
|
407
270
|
|
408
271
|
<li class="method">
|
409
|
-
<a href="WWWJDic/
|
272
|
+
<a href="WWWJDic/Parsers/Dict.html#method-i-parse">#parse</a>
|
410
273
|
—
|
411
|
-
<span class="container">WWWJDic::
|
274
|
+
<span class="container">WWWJDic::Parsers::Dict</span>
|
275
|
+
|
276
|
+
<li class="method">
|
277
|
+
<a href="WWWJDic/Parsers/Display.html#method-i-parse">#parse</a>
|
278
|
+
—
|
279
|
+
<span class="container">WWWJDic::Parsers::Display</span>
|
412
280
|
|
413
281
|
<li class="method">
|
414
282
|
<a href="WWWJDic/Parsers/Key.html#method-i-parse">#parse</a>
|
@@ -426,14 +294,9 @@
|
|
426
294
|
<span class="container">WWWJDic::Parsers::Server</span>
|
427
295
|
|
428
296
|
<li class="method">
|
429
|
-
<a href="WWWJDic/
|
430
|
-
—
|
431
|
-
<span class="container">WWWJDic::Parsers::Display</span>
|
432
|
-
|
433
|
-
<li class="method">
|
434
|
-
<a href="WWWJDic/Parsers/Dict.html#method-i-parse">#parse</a>
|
297
|
+
<a href="WWWJDic/Parser.html#method-i-parse">#parse</a>
|
435
298
|
—
|
436
|
-
<span class="container">WWWJDic::
|
299
|
+
<span class="container">WWWJDic::Parser</span>
|
437
300
|
|
438
301
|
<li class="method">
|
439
302
|
<a href="WWWJDic/Utils/Raisers.html#method-i-raiser_array">#raiser_array</a>
|
@@ -470,11 +333,141 @@
|
|
470
333
|
—
|
471
334
|
<span class="container">WWWJDic::WWWJDic</span>
|
472
335
|
|
336
|
+
<li class="method">
|
337
|
+
<a href="Object.html#method-i-test_ask_translation">#test_ask_translation</a>
|
338
|
+
—
|
339
|
+
<span class="container">Object</span>
|
340
|
+
|
341
|
+
<li class="method">
|
342
|
+
<a href="Object.html#method-i-test_ask_uri">#test_ask_uri</a>
|
343
|
+
—
|
344
|
+
<span class="container">Object</span>
|
345
|
+
|
346
|
+
<li class="method">
|
347
|
+
<a href="Object.html#method-i-test_dictionary_code">#test_dictionary_code</a>
|
348
|
+
—
|
349
|
+
<span class="container">Object</span>
|
350
|
+
|
351
|
+
<li class="method">
|
352
|
+
<a href="Object.html#method-i-test_dictionary_name">#test_dictionary_name</a>
|
353
|
+
—
|
354
|
+
<span class="container">Object</span>
|
355
|
+
|
356
|
+
<li class="method">
|
357
|
+
<a href="Object.html#method-i-test_en_it">#test_en_it</a>
|
358
|
+
—
|
359
|
+
<span class="container">Object</span>
|
360
|
+
|
361
|
+
<li class="method">
|
362
|
+
<a href="Object.html#method-i-test_get_dictionary">#test_get_dictionary</a>
|
363
|
+
—
|
364
|
+
<span class="container">Object</span>
|
365
|
+
|
366
|
+
<li class="method">
|
367
|
+
<a href="Object.html#method-i-test_get_translation">#test_get_translation</a>
|
368
|
+
—
|
369
|
+
<span class="container">Object</span>
|
370
|
+
|
371
|
+
<li class="method">
|
372
|
+
<a href="Object.html#method-i-test_invalid_param">#test_invalid_param</a>
|
373
|
+
—
|
374
|
+
<span class="container">Object</span>
|
375
|
+
|
376
|
+
<li class="method">
|
377
|
+
<a href="Object.html#method-i-test_invalid_parameter">#test_invalid_parameter</a>
|
378
|
+
—
|
379
|
+
<span class="container">Object</span>
|
380
|
+
|
381
|
+
<li class="method">
|
382
|
+
<a href="Object.html#method-i-test_invalid_server">#test_invalid_server</a>
|
383
|
+
—
|
384
|
+
<span class="container">Object</span>
|
385
|
+
|
386
|
+
<li class="method">
|
387
|
+
<a href="Object.html#method-i-test_multilanguage">#test_multilanguage</a>
|
388
|
+
—
|
389
|
+
<span class="container">Object</span>
|
390
|
+
|
391
|
+
<li class="method">
|
392
|
+
<a href="Object.html#method-i-test_multiple_languages">#test_multiple_languages</a>
|
393
|
+
—
|
394
|
+
<span class="container">Object</span>
|
395
|
+
|
396
|
+
<li class="method">
|
397
|
+
<a href="Object.html#method-i-test_no_raise">#test_no_raise</a>
|
398
|
+
—
|
399
|
+
<span class="container">Object</span>
|
400
|
+
|
401
|
+
<li class="method">
|
402
|
+
<a href="Object.html#method-i-test_one_locale">#test_one_locale</a>
|
403
|
+
—
|
404
|
+
<span class="container">Object</span>
|
405
|
+
|
406
|
+
<li class="method">
|
407
|
+
<a href="Object.html#method-i-test_override_custom_params">#test_override_custom_params</a>
|
408
|
+
—
|
409
|
+
<span class="container">Object</span>
|
410
|
+
|
473
411
|
<li class="method">
|
474
412
|
<a href="WWWJDic/ParsableDuckType.html#method-i-test_parsable_duck_type">#test_parsable_duck_type</a>
|
475
413
|
—
|
476
414
|
<span class="container">WWWJDic::ParsableDuckType</span>
|
477
415
|
|
416
|
+
<li class="method">
|
417
|
+
<a href="Object.html#method-i-test_raise">#test_raise</a>
|
418
|
+
—
|
419
|
+
<span class="container">Object</span>
|
420
|
+
|
421
|
+
<li class="method">
|
422
|
+
<a href="Object.html#method-i-test_raise_error_param">#test_raise_error_param</a>
|
423
|
+
—
|
424
|
+
<span class="container">Object</span>
|
425
|
+
|
426
|
+
<li class="method">
|
427
|
+
<a href="Object.html#method-i-test_raise_invalid_server_error">#test_raise_invalid_server_error</a>
|
428
|
+
—
|
429
|
+
<span class="container">Object</span>
|
430
|
+
|
431
|
+
<li class="method">
|
432
|
+
<a href="Object.html#method-i-test_raiser">#test_raiser</a>
|
433
|
+
—
|
434
|
+
<span class="container">Object</span>
|
435
|
+
|
436
|
+
<li class="method">
|
437
|
+
<a href="Object.html#method-i-test_return_json">#test_return_json</a>
|
438
|
+
—
|
439
|
+
<span class="container">Object</span>
|
440
|
+
|
441
|
+
<li class="method">
|
442
|
+
<a href="Object.html#method-i-test_return_test_reference">#test_return_test_reference</a>
|
443
|
+
—
|
444
|
+
<span class="container">Object</span>
|
445
|
+
|
446
|
+
<li class="method">
|
447
|
+
<a href="Object.html#method-i-test_select_server">#test_select_server</a>
|
448
|
+
—
|
449
|
+
<span class="container">Object</span>
|
450
|
+
|
451
|
+
<li class="method">
|
452
|
+
<a href="Object.html#method-i-test_server">#test_server</a>
|
453
|
+
—
|
454
|
+
<span class="container">Object</span>
|
455
|
+
|
456
|
+
<li class="method">
|
457
|
+
<a href="Object.html#method-i-test_translation">#test_translation</a>
|
458
|
+
—
|
459
|
+
<span class="container">Object</span>
|
460
|
+
|
461
|
+
<li class="method">
|
462
|
+
<a href="Object.html#method-i-test_wrong_code">#test_wrong_code</a>
|
463
|
+
—
|
464
|
+
<span class="container">Object</span>
|
465
|
+
|
466
|
+
<li class="method">
|
467
|
+
<a href="Object.html#method-i-test_wrong_name">#test_wrong_name</a>
|
468
|
+
—
|
469
|
+
<span class="container">Object</span>
|
470
|
+
|
478
471
|
<li class="method">
|
479
472
|
<a href="WWWJDic/Splitter.html#method-i-title">#title</a>
|
480
473
|
—
|
@@ -499,14 +492,13 @@
|
|
499
492
|
<a href="WWWJDic/WWWJDic.html#method-i-uri">#uri</a>
|
500
493
|
—
|
501
494
|
<span class="container">WWWJDic::WWWJDic</span>
|
502
|
-
|
503
495
|
</ul>
|
504
496
|
</main>
|
505
497
|
|
506
498
|
|
507
499
|
<footer id="validator-badges" role="contentinfo">
|
508
500
|
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
509
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.
|
501
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.0.
|
510
502
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
511
503
|
</footer>
|
512
504
|
|