wwwjdic 13.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 +7 -0
- data/CHANGELOG +419 -0
- data/COPYING.md +675 -0
- data/Gemfile +21 -0
- data/README.md +303 -0
- data/Rakefile +52 -0
- data/acknowledgements.md +55 -0
- data/authors.md +67 -0
- data/copyright.md +377 -0
- data/examples/basics.rb +117 -0
- data/examples/translate.rb +128 -0
- data/examples/uri.rb +129 -0
- data/html/CHANGELOG.html +597 -0
- data/html/COPYING_md.html +389 -0
- data/html/Gemfile.html +104 -0
- data/html/Object.html +185 -0
- data/html/README_md.html +343 -0
- data/html/Rakefile.html +137 -0
- data/html/WWWJDic/ParsableDuckType.html +159 -0
- data/html/WWWJDic/Parser.html +233 -0
- data/html/WWWJDic/Parsers/Dict.html +191 -0
- data/html/WWWJDic/Parsers/Display.html +184 -0
- data/html/WWWJDic/Parsers/Key.html +221 -0
- data/html/WWWJDic/Parsers/Search.html +214 -0
- data/html/WWWJDic/Parsers/Server.html +182 -0
- data/html/WWWJDic/Parsers.html +96 -0
- data/html/WWWJDic/Splitter.html +378 -0
- data/html/WWWJDic/Utils/Downloader/Downloader.html +227 -0
- data/html/WWWJDic/Utils/Downloader.html +108 -0
- data/html/WWWJDic/Utils/Raisers.html +235 -0
- data/html/WWWJDic/Utils.html +108 -0
- data/html/WWWJDic/WWWJDic.html +715 -0
- data/html/WWWJDic.html +348 -0
- data/html/acknowledgements_md.html +149 -0
- data/html/authors_md.html +181 -0
- data/html/copyright_md.html +422 -0
- data/html/created.rid +59 -0
- data/html/css/fonts.css +167 -0
- data/html/css/rdoc.css +590 -0
- data/html/fonts/Lato-Light.ttf +0 -0
- data/html/fonts/Lato-LightItalic.ttf +0 -0
- data/html/fonts/Lato-Regular.ttf +0 -0
- data/html/fonts/Lato-RegularItalic.ttf +0 -0
- data/html/fonts/SourceCodePro-Bold.ttf +0 -0
- data/html/fonts/SourceCodePro-Regular.ttf +0 -0
- data/html/images/add.png +0 -0
- data/html/images/arrow_up.png +0 -0
- data/html/images/brick.png +0 -0
- data/html/images/brick_link.png +0 -0
- data/html/images/bug.png +0 -0
- data/html/images/bullet_black.png +0 -0
- data/html/images/bullet_toggle_minus.png +0 -0
- data/html/images/bullet_toggle_plus.png +0 -0
- data/html/images/date.png +0 -0
- data/html/images/delete.png +0 -0
- data/html/images/find.png +0 -0
- data/html/images/loadingAnimation.gif +0 -0
- data/html/images/macFFBgHack.png +0 -0
- data/html/images/package.png +0 -0
- data/html/images/page_green.png +0 -0
- data/html/images/page_white_text.png +0 -0
- data/html/images/page_white_width.png +0 -0
- data/html/images/plugin.png +0 -0
- data/html/images/ruby.png +0 -0
- data/html/images/tag_blue.png +0 -0
- data/html/images/tag_green.png +0 -0
- data/html/images/transparent.png +0 -0
- data/html/images/wrench.png +0 -0
- data/html/images/wrench_orange.png +0 -0
- data/html/images/zoom.png +0 -0
- data/html/index.html +363 -0
- data/html/js/darkfish.js +161 -0
- data/html/js/jquery.js +4 -0
- data/html/js/navigation.js +141 -0
- data/html/js/navigation.js.gz +0 -0
- data/html/js/search.js +109 -0
- data/html/js/search_index.js +1 -0
- data/html/js/search_index.js.gz +0 -0
- data/html/js/searcher.js +229 -0
- data/html/js/searcher.js.gz +0 -0
- data/html/table_of_contents.html +541 -0
- data/html/wwwjdic_gemspec.html +161 -0
- data/lib/wwwjdic/application.rb +233 -0
- data/lib/wwwjdic/constants.rb +113 -0
- data/lib/wwwjdic/locales/de.yml +29 -0
- data/lib/wwwjdic/locales/en.yml +29 -0
- data/lib/wwwjdic/locales/es.yml +29 -0
- data/lib/wwwjdic/locales/fr.yml +29 -0
- data/lib/wwwjdic/locales/hu.yml +29 -0
- data/lib/wwwjdic/locales/it.yml +29 -0
- data/lib/wwwjdic/locales/ja.yml +30 -0
- data/lib/wwwjdic/locales/nl.yml +29 -0
- data/lib/wwwjdic/locales/ru.yml +29 -0
- data/lib/wwwjdic/locales/sl.yml +29 -0
- data/lib/wwwjdic/locales/sv.yml +29 -0
- data/lib/wwwjdic/parser.rb +46 -0
- data/lib/wwwjdic/parsers/dict.rb +58 -0
- data/lib/wwwjdic/parsers/display.rb +50 -0
- data/lib/wwwjdic/parsers/key.rb +75 -0
- data/lib/wwwjdic/parsers/search.rb +60 -0
- data/lib/wwwjdic/parsers/server.rb +47 -0
- data/lib/wwwjdic/utils/downloader.rb +135 -0
- data/lib/wwwjdic/utils/raisers.rb +67 -0
- data/lib/wwwjdic/utils/splitter.rb +84 -0
- data/lib/wwwjdic/version.rb +20 -0
- data/lib/wwwjdic.rb +57 -0
- data/test/test_helper.rb +40 -0
- data/test/test_wwwjdic.rb +32 -0
- data/test/wwwjdic/locales/de.yml +22 -0
- data/test/wwwjdic/locales/en.yml +22 -0
- data/test/wwwjdic/locales/es.yml +22 -0
- data/test/wwwjdic/locales/fr.yml +22 -0
- data/test/wwwjdic/locales/hu.yml +22 -0
- data/test/wwwjdic/locales/it.yml +21 -0
- data/test/wwwjdic/locales/ja.yml +23 -0
- data/test/wwwjdic/locales/nl.yml +22 -0
- data/test/wwwjdic/locales/ru.yml +22 -0
- data/test/wwwjdic/locales/sl.yml +22 -0
- data/test/wwwjdic/locales/sv.yml +22 -0
- data/test/wwwjdic/locales/test_locales.rb +65 -0
- data/test/wwwjdic/parsers/test_dict.rb +73 -0
- data/test/wwwjdic/parsers/test_display.rb +51 -0
- data/test/wwwjdic/parsers/test_key.rb +52 -0
- data/test/wwwjdic/parsers/test_server.rb +51 -0
- data/test/wwwjdic/test_application.rb +219 -0
- data/test/wwwjdic/test_parsable_duck_type.rb +37 -0
- data/test/wwwjdic/utils/test_downloader.rb +41 -0
- data/test/wwwjdic/utils/test_raisers.rb +59 -0
- data/wwwjdic.gemspec +74 -0
- metadata +309 -0
@@ -0,0 +1,541 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta charset="UTF-8">
|
6
|
+
|
7
|
+
<title>Table of Contents - wwwjdic 13.0.0</title>
|
8
|
+
|
9
|
+
<script type="text/javascript">
|
10
|
+
var rdoc_rel_prefix = "./";
|
11
|
+
var index_rel_prefix = "./";
|
12
|
+
</script>
|
13
|
+
|
14
|
+
<script src="./js/jquery.js"></script>
|
15
|
+
<script src="./js/darkfish.js"></script>
|
16
|
+
|
17
|
+
<link href="./css/fonts.css" rel="stylesheet">
|
18
|
+
<link href="./css/rdoc.css" rel="stylesheet">
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
<body id="top" class="table-of-contents">
|
24
|
+
<main role="main">
|
25
|
+
<h1 class="class">Table of Contents - wwwjdic 13.0.0</h1>
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
<h2 id="pages">Pages</h2>
|
30
|
+
<ul>
|
31
|
+
|
32
|
+
<li class="file">
|
33
|
+
<a href="CHANGELOG.html">CHANGELOG</a>
|
34
|
+
|
35
|
+
<ul>
|
36
|
+
|
37
|
+
<li><a href="CHANGELOG.html#label-Version+13.0.0">Version 13.0.0</a>
|
38
|
+
|
39
|
+
<li><a href="CHANGELOG.html#label-Version+12.0.0">Version 12.0.0</a>
|
40
|
+
|
41
|
+
<li><a href="CHANGELOG.html#label-Version+11.0.0">Version 11.0.0</a>
|
42
|
+
|
43
|
+
<li><a href="CHANGELOG.html#label-Version+10.0.0">Version 10.0.0</a>
|
44
|
+
|
45
|
+
<li><a href="CHANGELOG.html#label-Version+9.3.0">Version 9.3.0</a>
|
46
|
+
|
47
|
+
<li><a href="CHANGELOG.html#label-Version+9.2.0">Version 9.2.0</a>
|
48
|
+
|
49
|
+
<li><a href="CHANGELOG.html#label-Version+9.1.0">Version 9.1.0</a>
|
50
|
+
|
51
|
+
<li><a href="CHANGELOG.html#label-Version+9.0.4">Version 9.0.4</a>
|
52
|
+
|
53
|
+
<li><a href="CHANGELOG.html#label-Version+9.0.3">Version 9.0.3</a>
|
54
|
+
|
55
|
+
<li><a href="CHANGELOG.html#label-Version+9.0.2">Version 9.0.2</a>
|
56
|
+
|
57
|
+
<li><a href="CHANGELOG.html#label-Version+9.0.2-pre">Version 9.0.2-pre</a>
|
58
|
+
|
59
|
+
<li><a href="CHANGELOG.html#label-Version+9.0.1">Version 9.0.1</a>
|
60
|
+
|
61
|
+
<li><a href="CHANGELOG.html#label-Version+8.0.1">Version 8.0.1</a>
|
62
|
+
|
63
|
+
<li><a href="CHANGELOG.html#label-Version+7.1.3.pre">Version 7.1.3.pre</a>
|
64
|
+
|
65
|
+
<li><a href="CHANGELOG.html#label-Version+7.1.2">Version 7.1.2</a>
|
66
|
+
|
67
|
+
<li><a href="CHANGELOG.html#label-Version+7.1.1">Version 7.1.1</a>
|
68
|
+
|
69
|
+
<li><a href="CHANGELOG.html#label-Version+7.1.0">Version 7.1.0</a>
|
70
|
+
|
71
|
+
<li><a href="CHANGELOG.html#label-Version+7.0.0">Version 7.0.0</a>
|
72
|
+
|
73
|
+
<li><a href="CHANGELOG.html#label-Version+7.0.0.pre">Version 7.0.0.pre</a>
|
74
|
+
|
75
|
+
<li><a href="CHANGELOG.html#label-Version+6.2.0">Version 6.2.0</a>
|
76
|
+
|
77
|
+
<li><a href="CHANGELOG.html#label-Version+6.1.1">Version 6.1.1</a>
|
78
|
+
|
79
|
+
<li><a href="CHANGELOG.html#label-Version+6.0.1">Version 6.0.1</a>
|
80
|
+
|
81
|
+
<li><a href="CHANGELOG.html#label-Version+5.4.0">Version 5.4.0</a>
|
82
|
+
|
83
|
+
<li><a href="CHANGELOG.html#label-Version+5.2.2">Version 5.2.2</a>
|
84
|
+
|
85
|
+
<li><a href="CHANGELOG.html#label-Version+5.1.3">Version 5.1.3</a>
|
86
|
+
|
87
|
+
<li><a href="CHANGELOG.html#label-Version+2.11.2.pre.pre">Version 2.11.2.pre.pre</a>
|
88
|
+
|
89
|
+
<li><a href="CHANGELOG.html#label-Version+2.11.2.pre">Version 2.11.2.pre</a>
|
90
|
+
|
91
|
+
<li><a href="CHANGELOG.html#label-Version+2.11.1">Version 2.11.1</a>
|
92
|
+
|
93
|
+
<li><a href="CHANGELOG.html#label-Version+2.3.1">Version 2.3.1</a>
|
94
|
+
|
95
|
+
<li><a href="CHANGELOG.html#label-Version+2.2.15">Version 2.2.15</a>
|
96
|
+
|
97
|
+
<li><a href="CHANGELOG.html#label-Version+2.2.13">Version 2.2.13</a>
|
98
|
+
|
99
|
+
<li><a href="CHANGELOG.html#label-Version+2.2.11">Version 2.2.11</a>
|
100
|
+
|
101
|
+
<li><a href="CHANGELOG.html#label-Version+2.1.9">Version 2.1.9</a>
|
102
|
+
|
103
|
+
<li><a href="CHANGELOG.html#label-Version+2.1.4">Version 2.1.4</a>
|
104
|
+
|
105
|
+
<li><a href="CHANGELOG.html#label-Version+2.1.3">Version 2.1.3</a>
|
106
|
+
|
107
|
+
<li><a href="CHANGELOG.html#label-Version+2.1.1">Version 2.1.1</a>
|
108
|
+
|
109
|
+
<li><a href="CHANGELOG.html#label-Version+1.2.4">Version 1.2.4</a>
|
110
|
+
|
111
|
+
<li><a href="CHANGELOG.html#label-Version+1.2.2">Version 1.2.2</a>
|
112
|
+
|
113
|
+
<li><a href="CHANGELOG.html#label-Version+1.1.2">Version 1.1.2</a>
|
114
|
+
|
115
|
+
<li><a href="CHANGELOG.html#label-Version+0.0.0">Version 0.0.0</a>
|
116
|
+
|
117
|
+
</ul>
|
118
|
+
|
119
|
+
</li>
|
120
|
+
|
121
|
+
<li class="file">
|
122
|
+
<a href="COPYING_md.html">COPYING</a>
|
123
|
+
|
124
|
+
<ul>
|
125
|
+
|
126
|
+
<li><a href="COPYING_md.html#label-GNU+GENERAL+PUBLIC+LICENSE">GNU GENERAL PUBLIC LICENSE</a>
|
127
|
+
|
128
|
+
<li><a href="COPYING_md.html#label-Preamble">Preamble</a>
|
129
|
+
|
130
|
+
<li><a href="COPYING_md.html#label-TERMS+AND+CONDITIONS">TERMS AND CONDITIONS</a>
|
131
|
+
|
132
|
+
<li><a href="COPYING_md.html#label-0.+Definitions.">0. Definitions.</a>
|
133
|
+
|
134
|
+
<li><a href="COPYING_md.html#label-1.+Source+Code.">1. Source Code.</a>
|
135
|
+
|
136
|
+
<li><a href="COPYING_md.html#label-2.+Basic+Permissions.">2. Basic Permissions.</a>
|
137
|
+
|
138
|
+
<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>
|
139
|
+
|
140
|
+
<li><a href="COPYING_md.html#label-4.+Conveying+Verbatim+Copies.">4. Conveying Verbatim Copies.</a>
|
141
|
+
|
142
|
+
<li><a href="COPYING_md.html#label-5.+Conveying+Modified+Source+Versions.">5. Conveying Modified Source Versions.</a>
|
143
|
+
|
144
|
+
<li><a href="COPYING_md.html#label-6.+Conveying+Non-Source+Forms.">6. Conveying Non-Source Forms.</a>
|
145
|
+
|
146
|
+
<li><a href="COPYING_md.html#label-7.+Additional+Terms.">7. Additional Terms.</a>
|
147
|
+
|
148
|
+
<li><a href="COPYING_md.html#label-8.+Termination.">8. Termination.</a>
|
149
|
+
|
150
|
+
<li><a href="COPYING_md.html#label-9.+Acceptance+Not+Required+for+Having+Copies.">9. Acceptance Not Required for Having Copies.</a>
|
151
|
+
|
152
|
+
<li><a href="COPYING_md.html#label-10.+Automatic+Licensing+of+Downstream+Recipients.">10. Automatic Licensing of Downstream Recipients.</a>
|
153
|
+
|
154
|
+
<li><a href="COPYING_md.html#label-11.+Patents.">11. Patents.</a>
|
155
|
+
|
156
|
+
<li><a href="COPYING_md.html#label-12.+No+Surrender+of+Others-27+Freedom.">12. No Surrender of Others' Freedom.</a>
|
157
|
+
|
158
|
+
<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>
|
159
|
+
|
160
|
+
<li><a href="COPYING_md.html#label-14.+Revised+Versions+of+this+License.">14. Revised Versions of this License.</a>
|
161
|
+
|
162
|
+
<li><a href="COPYING_md.html#label-15.+Disclaimer+of+Warranty.">15. Disclaimer of Warranty.</a>
|
163
|
+
|
164
|
+
<li><a href="COPYING_md.html#label-16.+Limitation+of+Liability.">16. Limitation of Liability.</a>
|
165
|
+
|
166
|
+
<li><a href="COPYING_md.html#label-17.+Interpretation+of+Sections+15+and+16.">17. Interpretation of Sections 15 and 16.</a>
|
167
|
+
|
168
|
+
<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>
|
169
|
+
|
170
|
+
</ul>
|
171
|
+
|
172
|
+
</li>
|
173
|
+
|
174
|
+
<li class="file">
|
175
|
+
<a href="Gemfile.html">Gemfile</a>
|
176
|
+
|
177
|
+
</li>
|
178
|
+
|
179
|
+
<li class="file">
|
180
|
+
<a href="README_md.html">README</a>
|
181
|
+
|
182
|
+
<ul>
|
183
|
+
|
184
|
+
<li><a href="README_md.html#label-WWWJDic">WWWJDic</a>
|
185
|
+
|
186
|
+
<li><a href="README_md.html#label-Description">Description</a>
|
187
|
+
|
188
|
+
<li><a href="README_md.html#label-Documentation">Documentation</a>
|
189
|
+
|
190
|
+
<li><a href="README_md.html#label-Installing+WWWJDic">Installing WWWJDic</a>
|
191
|
+
|
192
|
+
<li><a href="README_md.html#label-Supported+Ruby+Versions+and+Implementations">Supported Ruby Versions and Implementations</a>
|
193
|
+
|
194
|
+
<li><a href="README_md.html#label-Support">Support</a>
|
195
|
+
|
196
|
+
<li><a href="README_md.html#label-Contributing">Contributing</a>
|
197
|
+
|
198
|
+
<li><a href="README_md.html#label-License">License</a>
|
199
|
+
|
200
|
+
<li><a href="README_md.html#label-Links">Links</a>
|
201
|
+
|
202
|
+
<li><a href="README_md.html#label-Savannah">Savannah</a>
|
203
|
+
|
204
|
+
<li><a href="README_md.html#label-RubyGems">RubyGems</a>
|
205
|
+
|
206
|
+
<li><a href="README_md.html#label-Other+links">Other links</a>
|
207
|
+
|
208
|
+
<li><a href="README_md.html#label-Usage+Examples">Usage Examples</a>
|
209
|
+
|
210
|
+
<li><a href="README_md.html#label-Parameters">Parameters</a>
|
211
|
+
|
212
|
+
</ul>
|
213
|
+
|
214
|
+
</li>
|
215
|
+
|
216
|
+
<li class="file">
|
217
|
+
<a href="Rakefile.html">Rakefile</a>
|
218
|
+
|
219
|
+
</li>
|
220
|
+
|
221
|
+
<li class="file">
|
222
|
+
<a href="acknowledgements_md.html">acknowledgements</a>
|
223
|
+
|
224
|
+
<ul>
|
225
|
+
|
226
|
+
<li><a href="acknowledgements_md.html#label-Acknowledgements">Acknowledgements</a>
|
227
|
+
|
228
|
+
<li><a href="acknowledgements_md.html#label-An+HTTP-2FHTTPS-2FFTP+file+downloader+library-2FCLI+based+upon+MiniPortile-27s+HTTP+implementation.">An HTTP/HTTPS/FTP file downloader library/CLI based upon MiniPortile's HTTP implementation.</a>
|
229
|
+
|
230
|
+
</ul>
|
231
|
+
|
232
|
+
</li>
|
233
|
+
|
234
|
+
<li class="file">
|
235
|
+
<a href="authors_md.html">authors</a>
|
236
|
+
|
237
|
+
<ul>
|
238
|
+
|
239
|
+
<li><a href="authors_md.html#label-Project+and+gem+owned+by">Project and gem owned by</a>
|
240
|
+
|
241
|
+
<li><a href="authors_md.html#label-Authors+list+-28in+appearing+order-29">Authors list (in appearing order)</a>
|
242
|
+
|
243
|
+
<li><a href="authors_md.html#label-Translations+Authors+-28in+appearing+order-29">Translations Authors (in appearing order)</a>
|
244
|
+
|
245
|
+
</ul>
|
246
|
+
|
247
|
+
</li>
|
248
|
+
|
249
|
+
<li class="file">
|
250
|
+
<a href="copyright_md.html">copyright</a>
|
251
|
+
|
252
|
+
<ul>
|
253
|
+
|
254
|
+
<li><a href="copyright_md.html#label-Copyright+Notes">Copyright Notes</a>
|
255
|
+
|
256
|
+
<li><a href="copyright_md.html#label-RDoc">RDoc</a>
|
257
|
+
|
258
|
+
<li><a href="copyright_md.html#label-Darkfish+-28darkfish.js+-26+rdoc.css-29">Darkfish (darkfish.js & rdoc.css)</a>
|
259
|
+
|
260
|
+
<li><a href="copyright_md.html#label-Sorce+Code+Pro+Font+-28-26+fonts.css-29">Sorce Code Pro Font (& fonts.css)</a>
|
261
|
+
|
262
|
+
<li><a href="copyright_md.html#label-Lato+Font">Lato Font</a>
|
263
|
+
|
264
|
+
<li><a href="copyright_md.html#label-Silk+Icons">Silk Icons</a>
|
265
|
+
|
266
|
+
<li><a href="copyright_md.html#label-jquery.js">jquery.js</a>
|
267
|
+
|
268
|
+
<li><a href="copyright_md.html#label-Sizzle.js">Sizzle.js</a>
|
269
|
+
|
270
|
+
<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>
|
271
|
+
|
272
|
+
</ul>
|
273
|
+
|
274
|
+
</li>
|
275
|
+
|
276
|
+
<li class="file">
|
277
|
+
<a href="wwwjdic_gemspec.html">wwwjdic.gemspec</a>
|
278
|
+
|
279
|
+
</li>
|
280
|
+
|
281
|
+
</ul>
|
282
|
+
|
283
|
+
|
284
|
+
<h2 id="classes">Classes and Modules</h2>
|
285
|
+
<ul>
|
286
|
+
|
287
|
+
<li class="class">
|
288
|
+
<a href="Object.html">Object</a>
|
289
|
+
|
290
|
+
</li>
|
291
|
+
|
292
|
+
<li class="module">
|
293
|
+
<a href="WWWJDic.html">WWWJDic</a>
|
294
|
+
|
295
|
+
</li>
|
296
|
+
|
297
|
+
<li class="module">
|
298
|
+
<a href="WWWJDic/ParsableDuckType.html">WWWJDic::ParsableDuckType</a>
|
299
|
+
|
300
|
+
</li>
|
301
|
+
|
302
|
+
<li class="class">
|
303
|
+
<a href="WWWJDic/Parser.html">WWWJDic::Parser</a>
|
304
|
+
|
305
|
+
</li>
|
306
|
+
|
307
|
+
<li class="module">
|
308
|
+
<a href="WWWJDic/Parsers.html">WWWJDic::Parsers</a>
|
309
|
+
|
310
|
+
</li>
|
311
|
+
|
312
|
+
<li class="class">
|
313
|
+
<a href="WWWJDic/Parsers/Dict.html">WWWJDic::Parsers::Dict</a>
|
314
|
+
|
315
|
+
</li>
|
316
|
+
|
317
|
+
<li class="class">
|
318
|
+
<a href="WWWJDic/Parsers/Display.html">WWWJDic::Parsers::Display</a>
|
319
|
+
|
320
|
+
</li>
|
321
|
+
|
322
|
+
<li class="class">
|
323
|
+
<a href="WWWJDic/Parsers/Key.html">WWWJDic::Parsers::Key</a>
|
324
|
+
|
325
|
+
</li>
|
326
|
+
|
327
|
+
<li class="class">
|
328
|
+
<a href="WWWJDic/Parsers/Search.html">WWWJDic::Parsers::Search</a>
|
329
|
+
|
330
|
+
</li>
|
331
|
+
|
332
|
+
<li class="class">
|
333
|
+
<a href="WWWJDic/Parsers/Server.html">WWWJDic::Parsers::Server</a>
|
334
|
+
|
335
|
+
</li>
|
336
|
+
|
337
|
+
<li class="class">
|
338
|
+
<a href="WWWJDic/Splitter.html">WWWJDic::Splitter</a>
|
339
|
+
|
340
|
+
</li>
|
341
|
+
|
342
|
+
<li class="module">
|
343
|
+
<a href="WWWJDic/Utils.html">WWWJDic::Utils</a>
|
344
|
+
|
345
|
+
</li>
|
346
|
+
|
347
|
+
<li class="module">
|
348
|
+
<a href="WWWJDic/Utils/Downloader.html">WWWJDic::Utils::Downloader</a>
|
349
|
+
|
350
|
+
</li>
|
351
|
+
|
352
|
+
<li class="class">
|
353
|
+
<a href="WWWJDic/Utils/Downloader/Downloader.html">WWWJDic::Utils::Downloader::Downloader</a>
|
354
|
+
|
355
|
+
</li>
|
356
|
+
|
357
|
+
<li class="module">
|
358
|
+
<a href="WWWJDic/Utils/Raisers.html">WWWJDic::Utils::Raisers</a>
|
359
|
+
|
360
|
+
</li>
|
361
|
+
|
362
|
+
<li class="class">
|
363
|
+
<a href="WWWJDic/WWWJDic.html">WWWJDic::WWWJDic</a>
|
364
|
+
|
365
|
+
</li>
|
366
|
+
|
367
|
+
</ul>
|
368
|
+
|
369
|
+
<h2 id="methods">Methods</h2>
|
370
|
+
<ul>
|
371
|
+
|
372
|
+
<li class="method">
|
373
|
+
<a href="WWWJDic.html#method-c-breener">::breener</a>
|
374
|
+
—
|
375
|
+
<span class="container">WWWJDic</span>
|
376
|
+
|
377
|
+
<li class="method">
|
378
|
+
<a href="WWWJDic/Utils/Downloader/Downloader.html#method-c-download_file">::download_file</a>
|
379
|
+
—
|
380
|
+
<span class="container">WWWJDic::Utils::Downloader::Downloader</span>
|
381
|
+
|
382
|
+
<li class="method">
|
383
|
+
<a href="WWWJDic/WWWJDic.html#method-c-new">::new</a>
|
384
|
+
—
|
385
|
+
<span class="container">WWWJDic::WWWJDic</span>
|
386
|
+
|
387
|
+
<li class="method">
|
388
|
+
<a href="WWWJDic/Splitter.html#method-c-new">::new</a>
|
389
|
+
—
|
390
|
+
<span class="container">WWWJDic::Splitter</span>
|
391
|
+
|
392
|
+
<li class="method">
|
393
|
+
<a href="WWWJDic/Parser.html#method-c-new">::new</a>
|
394
|
+
—
|
395
|
+
<span class="container">WWWJDic::Parser</span>
|
396
|
+
|
397
|
+
<li class="method">
|
398
|
+
<a href="WWWJDic/Splitter.html#method-i-content">#content</a>
|
399
|
+
—
|
400
|
+
<span class="container">WWWJDic::Splitter</span>
|
401
|
+
|
402
|
+
<li class="method">
|
403
|
+
<a href="WWWJDic/WWWJDic.html#method-i-dictionary">#dictionary</a>
|
404
|
+
—
|
405
|
+
<span class="container">WWWJDic::WWWJDic</span>
|
406
|
+
|
407
|
+
<li class="method">
|
408
|
+
<a href="WWWJDic/WWWJDic.html#method-i-dictionary-3D">#dictionary=</a>
|
409
|
+
—
|
410
|
+
<span class="container">WWWJDic::WWWJDic</span>
|
411
|
+
|
412
|
+
<li class="method">
|
413
|
+
<a href="WWWJDic/WWWJDic.html#method-i-json_translate">#json_translate</a>
|
414
|
+
—
|
415
|
+
<span class="container">WWWJDic::WWWJDic</span>
|
416
|
+
|
417
|
+
<li class="method">
|
418
|
+
<a href="WWWJDic/WWWJDic.html#method-i-json_uri">#json_uri</a>
|
419
|
+
—
|
420
|
+
<span class="container">WWWJDic::WWWJDic</span>
|
421
|
+
|
422
|
+
<li class="method">
|
423
|
+
<a href="WWWJDic/Splitter.html#method-i-lines">#lines</a>
|
424
|
+
—
|
425
|
+
<span class="container">WWWJDic::Splitter</span>
|
426
|
+
|
427
|
+
<li class="method">
|
428
|
+
<a href="Object.html#method-i-load_yaml_file">#load_yaml_file</a>
|
429
|
+
—
|
430
|
+
<span class="container">Object</span>
|
431
|
+
|
432
|
+
<li class="method">
|
433
|
+
<a href="WWWJDic/Splitter.html#method-i-message">#message</a>
|
434
|
+
—
|
435
|
+
<span class="container">WWWJDic::Splitter</span>
|
436
|
+
|
437
|
+
<li class="method">
|
438
|
+
<a href="WWWJDic/Parser.html#method-i-parse">#parse</a>
|
439
|
+
—
|
440
|
+
<span class="container">WWWJDic::Parser</span>
|
441
|
+
|
442
|
+
<li class="method">
|
443
|
+
<a href="WWWJDic/Parsers/Dict.html#method-i-parse">#parse</a>
|
444
|
+
—
|
445
|
+
<span class="container">WWWJDic::Parsers::Dict</span>
|
446
|
+
|
447
|
+
<li class="method">
|
448
|
+
<a href="WWWJDic/Parsers/Display.html#method-i-parse">#parse</a>
|
449
|
+
—
|
450
|
+
<span class="container">WWWJDic::Parsers::Display</span>
|
451
|
+
|
452
|
+
<li class="method">
|
453
|
+
<a href="WWWJDic/Parsers/Key.html#method-i-parse">#parse</a>
|
454
|
+
—
|
455
|
+
<span class="container">WWWJDic::Parsers::Key</span>
|
456
|
+
|
457
|
+
<li class="method">
|
458
|
+
<a href="WWWJDic/Parsers/Search.html#method-i-parse">#parse</a>
|
459
|
+
—
|
460
|
+
<span class="container">WWWJDic::Parsers::Search</span>
|
461
|
+
|
462
|
+
<li class="method">
|
463
|
+
<a href="WWWJDic/Parsers/Server.html#method-i-parse">#parse</a>
|
464
|
+
—
|
465
|
+
<span class="container">WWWJDic::Parsers::Server</span>
|
466
|
+
|
467
|
+
<li class="method">
|
468
|
+
<a href="WWWJDic/Utils/Raisers.html#method-i-raiser_array">#raiser_array</a>
|
469
|
+
—
|
470
|
+
<span class="container">WWWJDic::Utils::Raisers</span>
|
471
|
+
|
472
|
+
<li class="method">
|
473
|
+
<a href="WWWJDic/Utils/Raisers.html#method-i-raiser_downcase">#raiser_downcase</a>
|
474
|
+
—
|
475
|
+
<span class="container">WWWJDic::Utils::Raisers</span>
|
476
|
+
|
477
|
+
<li class="method">
|
478
|
+
<a href="WWWJDic/Utils/Raisers.html#method-i-raiser_to_i">#raiser_to_i</a>
|
479
|
+
—
|
480
|
+
<span class="container">WWWJDic::Utils::Raisers</span>
|
481
|
+
|
482
|
+
<li class="method">
|
483
|
+
<a href="WWWJDic/WWWJDic.html#method-i-raw_uri">#raw_uri</a>
|
484
|
+
—
|
485
|
+
<span class="container">WWWJDic::WWWJDic</span>
|
486
|
+
|
487
|
+
<li class="method">
|
488
|
+
<a href="WWWJDic/WWWJDic.html#method-i-reset">#reset</a>
|
489
|
+
—
|
490
|
+
<span class="container">WWWJDic::WWWJDic</span>
|
491
|
+
|
492
|
+
<li class="method">
|
493
|
+
<a href="WWWJDic/WWWJDic.html#method-i-server">#server</a>
|
494
|
+
—
|
495
|
+
<span class="container">WWWJDic::WWWJDic</span>
|
496
|
+
|
497
|
+
<li class="method">
|
498
|
+
<a href="WWWJDic/WWWJDic.html#method-i-server-3D">#server=</a>
|
499
|
+
—
|
500
|
+
<span class="container">WWWJDic::WWWJDic</span>
|
501
|
+
|
502
|
+
<li class="method">
|
503
|
+
<a href="WWWJDic/ParsableDuckType.html#method-i-test_parsable_duck_type">#test_parsable_duck_type</a>
|
504
|
+
—
|
505
|
+
<span class="container">WWWJDic::ParsableDuckType</span>
|
506
|
+
|
507
|
+
<li class="method">
|
508
|
+
<a href="WWWJDic/Splitter.html#method-i-title">#title</a>
|
509
|
+
—
|
510
|
+
<span class="container">WWWJDic::Splitter</span>
|
511
|
+
|
512
|
+
<li class="method">
|
513
|
+
<a href="WWWJDic/WWWJDic.html#method-i-to_s">#to_s</a>
|
514
|
+
—
|
515
|
+
<span class="container">WWWJDic::WWWJDic</span>
|
516
|
+
|
517
|
+
<li class="method">
|
518
|
+
<a href="WWWJDic/WWWJDic.html#method-i-translate">#translate</a>
|
519
|
+
—
|
520
|
+
<span class="container">WWWJDic::WWWJDic</span>
|
521
|
+
|
522
|
+
<li class="method">
|
523
|
+
<a href="WWWJDic/Splitter.html#method-i-translation">#translation</a>
|
524
|
+
—
|
525
|
+
<span class="container">WWWJDic::Splitter</span>
|
526
|
+
|
527
|
+
<li class="method">
|
528
|
+
<a href="WWWJDic/WWWJDic.html#method-i-uri">#uri</a>
|
529
|
+
—
|
530
|
+
<span class="container">WWWJDic::WWWJDic</span>
|
531
|
+
|
532
|
+
</ul>
|
533
|
+
</main>
|
534
|
+
|
535
|
+
|
536
|
+
<footer id="validator-badges" role="contentinfo">
|
537
|
+
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
538
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
|
539
|
+
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
540
|
+
</footer>
|
541
|
+
|