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.
Files changed (130) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG +419 -0
  3. data/COPYING.md +675 -0
  4. data/Gemfile +21 -0
  5. data/README.md +303 -0
  6. data/Rakefile +52 -0
  7. data/acknowledgements.md +55 -0
  8. data/authors.md +67 -0
  9. data/copyright.md +377 -0
  10. data/examples/basics.rb +117 -0
  11. data/examples/translate.rb +128 -0
  12. data/examples/uri.rb +129 -0
  13. data/html/CHANGELOG.html +597 -0
  14. data/html/COPYING_md.html +389 -0
  15. data/html/Gemfile.html +104 -0
  16. data/html/Object.html +185 -0
  17. data/html/README_md.html +343 -0
  18. data/html/Rakefile.html +137 -0
  19. data/html/WWWJDic/ParsableDuckType.html +159 -0
  20. data/html/WWWJDic/Parser.html +233 -0
  21. data/html/WWWJDic/Parsers/Dict.html +191 -0
  22. data/html/WWWJDic/Parsers/Display.html +184 -0
  23. data/html/WWWJDic/Parsers/Key.html +221 -0
  24. data/html/WWWJDic/Parsers/Search.html +214 -0
  25. data/html/WWWJDic/Parsers/Server.html +182 -0
  26. data/html/WWWJDic/Parsers.html +96 -0
  27. data/html/WWWJDic/Splitter.html +378 -0
  28. data/html/WWWJDic/Utils/Downloader/Downloader.html +227 -0
  29. data/html/WWWJDic/Utils/Downloader.html +108 -0
  30. data/html/WWWJDic/Utils/Raisers.html +235 -0
  31. data/html/WWWJDic/Utils.html +108 -0
  32. data/html/WWWJDic/WWWJDic.html +715 -0
  33. data/html/WWWJDic.html +348 -0
  34. data/html/acknowledgements_md.html +149 -0
  35. data/html/authors_md.html +181 -0
  36. data/html/copyright_md.html +422 -0
  37. data/html/created.rid +59 -0
  38. data/html/css/fonts.css +167 -0
  39. data/html/css/rdoc.css +590 -0
  40. data/html/fonts/Lato-Light.ttf +0 -0
  41. data/html/fonts/Lato-LightItalic.ttf +0 -0
  42. data/html/fonts/Lato-Regular.ttf +0 -0
  43. data/html/fonts/Lato-RegularItalic.ttf +0 -0
  44. data/html/fonts/SourceCodePro-Bold.ttf +0 -0
  45. data/html/fonts/SourceCodePro-Regular.ttf +0 -0
  46. data/html/images/add.png +0 -0
  47. data/html/images/arrow_up.png +0 -0
  48. data/html/images/brick.png +0 -0
  49. data/html/images/brick_link.png +0 -0
  50. data/html/images/bug.png +0 -0
  51. data/html/images/bullet_black.png +0 -0
  52. data/html/images/bullet_toggle_minus.png +0 -0
  53. data/html/images/bullet_toggle_plus.png +0 -0
  54. data/html/images/date.png +0 -0
  55. data/html/images/delete.png +0 -0
  56. data/html/images/find.png +0 -0
  57. data/html/images/loadingAnimation.gif +0 -0
  58. data/html/images/macFFBgHack.png +0 -0
  59. data/html/images/package.png +0 -0
  60. data/html/images/page_green.png +0 -0
  61. data/html/images/page_white_text.png +0 -0
  62. data/html/images/page_white_width.png +0 -0
  63. data/html/images/plugin.png +0 -0
  64. data/html/images/ruby.png +0 -0
  65. data/html/images/tag_blue.png +0 -0
  66. data/html/images/tag_green.png +0 -0
  67. data/html/images/transparent.png +0 -0
  68. data/html/images/wrench.png +0 -0
  69. data/html/images/wrench_orange.png +0 -0
  70. data/html/images/zoom.png +0 -0
  71. data/html/index.html +363 -0
  72. data/html/js/darkfish.js +161 -0
  73. data/html/js/jquery.js +4 -0
  74. data/html/js/navigation.js +141 -0
  75. data/html/js/navigation.js.gz +0 -0
  76. data/html/js/search.js +109 -0
  77. data/html/js/search_index.js +1 -0
  78. data/html/js/search_index.js.gz +0 -0
  79. data/html/js/searcher.js +229 -0
  80. data/html/js/searcher.js.gz +0 -0
  81. data/html/table_of_contents.html +541 -0
  82. data/html/wwwjdic_gemspec.html +161 -0
  83. data/lib/wwwjdic/application.rb +233 -0
  84. data/lib/wwwjdic/constants.rb +113 -0
  85. data/lib/wwwjdic/locales/de.yml +29 -0
  86. data/lib/wwwjdic/locales/en.yml +29 -0
  87. data/lib/wwwjdic/locales/es.yml +29 -0
  88. data/lib/wwwjdic/locales/fr.yml +29 -0
  89. data/lib/wwwjdic/locales/hu.yml +29 -0
  90. data/lib/wwwjdic/locales/it.yml +29 -0
  91. data/lib/wwwjdic/locales/ja.yml +30 -0
  92. data/lib/wwwjdic/locales/nl.yml +29 -0
  93. data/lib/wwwjdic/locales/ru.yml +29 -0
  94. data/lib/wwwjdic/locales/sl.yml +29 -0
  95. data/lib/wwwjdic/locales/sv.yml +29 -0
  96. data/lib/wwwjdic/parser.rb +46 -0
  97. data/lib/wwwjdic/parsers/dict.rb +58 -0
  98. data/lib/wwwjdic/parsers/display.rb +50 -0
  99. data/lib/wwwjdic/parsers/key.rb +75 -0
  100. data/lib/wwwjdic/parsers/search.rb +60 -0
  101. data/lib/wwwjdic/parsers/server.rb +47 -0
  102. data/lib/wwwjdic/utils/downloader.rb +135 -0
  103. data/lib/wwwjdic/utils/raisers.rb +67 -0
  104. data/lib/wwwjdic/utils/splitter.rb +84 -0
  105. data/lib/wwwjdic/version.rb +20 -0
  106. data/lib/wwwjdic.rb +57 -0
  107. data/test/test_helper.rb +40 -0
  108. data/test/test_wwwjdic.rb +32 -0
  109. data/test/wwwjdic/locales/de.yml +22 -0
  110. data/test/wwwjdic/locales/en.yml +22 -0
  111. data/test/wwwjdic/locales/es.yml +22 -0
  112. data/test/wwwjdic/locales/fr.yml +22 -0
  113. data/test/wwwjdic/locales/hu.yml +22 -0
  114. data/test/wwwjdic/locales/it.yml +21 -0
  115. data/test/wwwjdic/locales/ja.yml +23 -0
  116. data/test/wwwjdic/locales/nl.yml +22 -0
  117. data/test/wwwjdic/locales/ru.yml +22 -0
  118. data/test/wwwjdic/locales/sl.yml +22 -0
  119. data/test/wwwjdic/locales/sv.yml +22 -0
  120. data/test/wwwjdic/locales/test_locales.rb +65 -0
  121. data/test/wwwjdic/parsers/test_dict.rb +73 -0
  122. data/test/wwwjdic/parsers/test_display.rb +51 -0
  123. data/test/wwwjdic/parsers/test_key.rb +52 -0
  124. data/test/wwwjdic/parsers/test_server.rb +51 -0
  125. data/test/wwwjdic/test_application.rb +219 -0
  126. data/test/wwwjdic/test_parsable_duck_type.rb +37 -0
  127. data/test/wwwjdic/utils/test_downloader.rb +41 -0
  128. data/test/wwwjdic/utils/test_raisers.rb +59 -0
  129. data/wwwjdic.gemspec +74 -0
  130. metadata +309 -0
@@ -0,0 +1,597 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>CHANGELOG - 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" role="document" class="file">
24
+ <nav role="navigation">
25
+ <div id="project-navigation">
26
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
27
+ <h2>
28
+ <a href="./index.html" rel="home">Home</a>
29
+ </h2>
30
+
31
+ <div id="table-of-contents-navigation">
32
+ <a href="./table_of_contents.html#pages">Pages</a>
33
+ <a href="./table_of_contents.html#classes">Classes</a>
34
+ <a href="./table_of_contents.html#methods">Methods</a>
35
+ </div>
36
+ </div>
37
+
38
+ <div id="search-section" role="search" class="project-section initially-hidden">
39
+ <form action="#" method="get" accept-charset="utf-8">
40
+ <div id="search-field-wrapper">
41
+ <input id="search-field" role="combobox" aria-label="Search"
42
+ aria-autocomplete="list" aria-controls="search-results"
43
+ type="text" name="search" placeholder="Search" spellcheck="false"
44
+ title="Type to search, Up and Down to navigate, Enter to load">
45
+ </div>
46
+
47
+ <ul id="search-results" aria-label="Search Results"
48
+ aria-busy="false" aria-expanded="false"
49
+ aria-atomic="false" class="initially-hidden"></ul>
50
+ </form>
51
+ </div>
52
+
53
+ </div>
54
+
55
+
56
+ <div class="nav-section">
57
+ <h3>Table of Contents</h3>
58
+
59
+ <ul class="link-list" role="directory">
60
+ <li><a href="#label-Version+13.0.0">Version 13.0.0</a>
61
+ <li><a href="#label-Version+12.0.0">Version 12.0.0</a>
62
+ <li><a href="#label-Version+11.0.0">Version 11.0.0</a>
63
+ <li><a href="#label-Version+10.0.0">Version 10.0.0</a>
64
+ <li><a href="#label-Version+9.3.0">Version 9.3.0</a>
65
+ <li><a href="#label-Version+9.2.0">Version 9.2.0</a>
66
+ <li><a href="#label-Version+9.1.0">Version 9.1.0</a>
67
+ <li><a href="#label-Version+9.0.4">Version 9.0.4</a>
68
+ <li><a href="#label-Version+9.0.3">Version 9.0.3</a>
69
+ <li><a href="#label-Version+9.0.2">Version 9.0.2</a>
70
+ <li><a href="#label-Version+9.0.2-pre">Version 9.0.2-pre</a>
71
+ <li><a href="#label-Version+9.0.1">Version 9.0.1</a>
72
+ <li><a href="#label-Version+8.0.1">Version 8.0.1</a>
73
+ <li><a href="#label-Version+7.1.3.pre">Version 7.1.3.pre</a>
74
+ <li><a href="#label-Version+7.1.2">Version 7.1.2</a>
75
+ <li><a href="#label-Version+7.1.1">Version 7.1.1</a>
76
+ <li><a href="#label-Version+7.1.0">Version 7.1.0</a>
77
+ <li><a href="#label-Version+7.0.0">Version 7.0.0</a>
78
+ <li><a href="#label-Version+7.0.0.pre">Version 7.0.0.pre</a>
79
+ <li><a href="#label-Version+6.2.0">Version 6.2.0</a>
80
+ <li><a href="#label-Version+6.1.1">Version 6.1.1</a>
81
+ <li><a href="#label-Version+6.0.1">Version 6.0.1</a>
82
+ <li><a href="#label-Version+5.4.0">Version 5.4.0</a>
83
+ <li><a href="#label-Version+5.2.2">Version 5.2.2</a>
84
+ <li><a href="#label-Version+5.1.3">Version 5.1.3</a>
85
+ <li><a href="#label-Version+2.11.2.pre.pre">Version 2.11.2.pre.pre</a>
86
+ <li><a href="#label-Version+2.11.2.pre">Version 2.11.2.pre</a>
87
+ <li><a href="#label-Version+2.11.1">Version 2.11.1</a>
88
+ <li><a href="#label-Version+2.3.1">Version 2.3.1</a>
89
+ <li><a href="#label-Version+2.2.15">Version 2.2.15</a>
90
+ <li><a href="#label-Version+2.2.13">Version 2.2.13</a>
91
+ <li><a href="#label-Version+2.2.11">Version 2.2.11</a>
92
+ <li><a href="#label-Version+2.1.9">Version 2.1.9</a>
93
+ <li><a href="#label-Version+2.1.4">Version 2.1.4</a>
94
+ <li><a href="#label-Version+2.1.3">Version 2.1.3</a>
95
+ <li><a href="#label-Version+2.1.1">Version 2.1.1</a>
96
+ <li><a href="#label-Version+1.2.4">Version 1.2.4</a>
97
+ <li><a href="#label-Version+1.2.2">Version 1.2.2</a>
98
+ <li><a href="#label-Version+1.1.2">Version 1.1.2</a>
99
+ <li><a href="#label-Version+0.0.0">Version 0.0.0</a>
100
+ </ul>
101
+ </div>
102
+
103
+
104
+ <div id="project-metadata">
105
+ <div id="fileindex-section" class="nav-section">
106
+ <h3>Pages</h3>
107
+
108
+ <ul class="link-list">
109
+
110
+ <li><a href="./CHANGELOG.html">CHANGELOG</a>
111
+
112
+ <li><a href="./COPYING_md.html">COPYING</a>
113
+
114
+ <li><a href="./Gemfile.html">Gemfile</a>
115
+
116
+ <li><a href="./README_md.html">README</a>
117
+
118
+ <li><a href="./Rakefile.html">Rakefile</a>
119
+
120
+ <li><a href="./acknowledgements_md.html">acknowledgements</a>
121
+
122
+ <li><a href="./authors_md.html">authors</a>
123
+
124
+ <li><a href="./copyright_md.html">copyright</a>
125
+
126
+ <li><a href="./wwwjdic_gemspec.html">wwwjdic.gemspec</a>
127
+
128
+ </ul>
129
+ </div>
130
+
131
+ </div>
132
+ </nav>
133
+
134
+ <main role="main" aria-label="Page CHANGELOG">
135
+
136
+ <h1 id="label-Version+13.0.0">Version 13.0.0<span><a href="#label-Version+13.0.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
137
+
138
+ <pre>* MAJOR moving from a_gem.required_ruby_version = &#39;~&gt; 2.5&#39; to
139
+ a_gem.required_ruby_version = &#39;~&gt; 2.6&#39;.
140
+ * PATCH updating gem dependencies.
141
+ * PATCH: add badges from Shields.IO
142
+ * IN PROGRESS: translation example.
143
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
144
+ allow user asking for specific searches. Search key currently fixed
145
+ to &#39;Q&#39; (exact match) type search.
146
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
147
+ point 1 (Software using Semantic Versioning MUST declare a public
148
+ API. This API could be declared in the code itself or exist strictly
149
+ in documentation. However it is done, it should be precise and
150
+ comprehensive.)</pre>
151
+
152
+ <h1 id="label-Version+12.0.0">Version 12.0.0<span><a href="#label-Version+12.0.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
153
+
154
+ <pre>* MAJOR moving from a_gem.required_ruby_version = &#39;~&gt; 2.4&#39; to
155
+ a_gem.required_ruby_version = &#39;~&gt; 2.5&#39;.
156
+ * PATCH updating gem dependencies.
157
+ * IN PROGRESS: translation example.
158
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
159
+ allow user asking for specific searches. Search key currently fixed
160
+ to &#39;Q&#39; (exact match) type search.
161
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
162
+ point 1 (Software using Semantic Versioning MUST declare a public
163
+ API. This API could be declared in the code itself or exist strictly
164
+ in documentation. However it is done, it should be precise and
165
+ comprehensive.)</pre>
166
+
167
+ <h1 id="label-Version+11.0.0">Version 11.0.0<span><a href="#label-Version+11.0.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
168
+
169
+ <pre>* MAJOR moving from a_gem.required_ruby_version = &#39;~&gt; 2.3&#39; to
170
+ a_gem.required_ruby_version = &#39;~&gt; 2.4&#39;.
171
+ * PATCH updating gem dependencies.
172
+ * IN PROGRESS: translation example.
173
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
174
+ allow user asking for specific searches. Search key currently fixed
175
+ to &#39;Q&#39; (exact match) type search.
176
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
177
+ point 1 (Software using Semantic Versioning MUST declare a public
178
+ API. This API could be declared in the code itself or exist strictly
179
+ in documentation. However it is done, it should be precise and
180
+ comprehensive.)</pre>
181
+
182
+ <h1 id="label-Version+10.0.0">Version 10.0.0<span><a href="#label-Version+10.0.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
183
+
184
+ <pre>* MAJOR moving from a_gem.required_ruby_version = &#39;~&gt; 2.2&#39; to
185
+ a_gem.required_ruby_version = &#39;~&gt; 2.3&#39;.
186
+ * PATCH updating gem dependencies.
187
+ * IN PROGRESS: translation example.
188
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
189
+ allow user asking for specific searches. Search key currently fixed
190
+ to &#39;Q&#39; (exact match) type search.
191
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
192
+ point 1 (Software using Semantic Versioning MUST declare a public
193
+ API. This API could be declared in the code itself or exist strictly
194
+ in documentation. However it is done, it should be precise and
195
+ comprehensive.)</pre>
196
+
197
+ <h1 id="label-Version+9.3.0">Version 9.3.0<span><a href="#label-Version+9.3.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
198
+
199
+ <pre>* MINOR: working to #45960: &quot;content&quot; field now contains translation
200
+ text as &quot;meanings&quot;.
201
+ * PATCH updating gem dependencies.
202
+ * IN PROGRESS: translation example.
203
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
204
+ allow user asking for specific searches. Search key currently fixed
205
+ to &#39;Q&#39; (exact match) type search.
206
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
207
+ point 1 (Software using Semantic Versioning MUST declare a public
208
+ API. This API could be declared in the code itself or exist strictly
209
+ in documentation. However it is done, it should be precise and
210
+ comprehensive.)</pre>
211
+
212
+ <h1 id="label-Version+9.2.0">Version 9.2.0<span><a href="#label-Version+9.2.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
213
+
214
+ <pre>* MINOR: started working to #45558: &quot;content&quot; field now contains
215
+ translation lines split as array with &quot;word&quot;, &quot;kana&quot; and &quot;text&quot;.
216
+ * PATCH: using .exist? instead of .exists? for File check (removing
217
+ deprecated method).
218
+ * IN PROGRESS: translation example.
219
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
220
+ allow user asking for specific searches. Search key currently fixed
221
+ to &#39;Q&#39; (exact match) type search.
222
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
223
+ point 1 (Software using Semantic Versioning MUST declare a public
224
+ API. This API could be declared in the code itself or exist strictly
225
+ in documentation. However it is done, it should be precise and
226
+ comprehensive.)</pre>
227
+
228
+ <h1 id="label-Version+9.1.0">Version 9.1.0<span><a href="#label-Version+9.1.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
229
+
230
+ <pre>* MINOR: started working to #45558: lines field now contains simple
231
+ translation lines split as array.
232
+ * PATCH: using .exist? instead of .exists? for File check (removing
233
+ deprecated method).
234
+ * IN PROGRESS: translation example.
235
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
236
+ allow user asking for specific searches. Search key currently fixed
237
+ to &#39;Q&#39; (exact match) type search.
238
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
239
+ point 1 (Software using Semantic Versioning MUST declare a public
240
+ API. This API could be declared in the code itself or exist strictly
241
+ in documentation. However it is done, it should be precise and
242
+ comprehensive.)</pre>
243
+
244
+ <h1 id="label-Version+9.0.4">Version 9.0.4<span><a href="#label-Version+9.0.4">&para;</a> <a href="#top">&uarr;</a></span></h1>
245
+
246
+ <pre>* PATCH: adding proper filename management (and save) for
247
+ json_translate.
248
+ * IN PROGRESS: translation example.
249
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
250
+ allow user asking for specific searches. Search key currently fixed
251
+ to &#39;Q&#39; (exact match) type search.
252
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
253
+ point 1 (Software using Semantic Versioning MUST declare a public
254
+ API. This API could be declared in the code itself or exist strictly
255
+ in documentation. However it is done, it should be precise and
256
+ comprehensive.)</pre>
257
+
258
+ <h1 id="label-Version+9.0.3">Version 9.0.3<span><a href="#label-Version+9.0.3">&para;</a> <a href="#top">&uarr;</a></span></h1>
259
+
260
+ <pre>* FIXED BUG #45557
261
+ * IN PROGRESS: translation example.
262
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
263
+ allow user asking for specific searches. Search key currently fixed
264
+ to &#39;Q&#39; (exact match) type search.
265
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
266
+ point 1 (Software using Semantic Versioning MUST declare a public
267
+ API. This API could be declared in the code itself or exist strictly
268
+ in documentation. However it is done, it should be precise and
269
+ comprehensive.)</pre>
270
+
271
+ <h1 id="label-Version+9.0.2">Version 9.0.2<span><a href="#label-Version+9.0.2">&para;</a> <a href="#top">&uarr;</a></span></h1>
272
+
273
+ <pre>* FIXED BUG #45535
274
+ * IN PROGRESS: translation example.
275
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
276
+ allow user asking for specific searches. Search key currently fixed
277
+ to &#39;Q&#39; (exact match) type search.
278
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
279
+ point 1 (Software using Semantic Versioning MUST declare a public
280
+ API. This API could be declared in the code itself or exist strictly
281
+ in documentation. However it is done, it should be precise and
282
+ comprehensive.)</pre>
283
+
284
+ <h1 id="label-Version+9.0.2-pre">Version 9.0.2-pre<span><a href="#label-Version+9.0.2-pre">&para;</a> <a href="#top">&uarr;</a></span></h1>
285
+
286
+ <pre>* IN PROGRESS: BUG #45535
287
+ * IN PROGRESS: translation example.
288
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
289
+ allow user asking for specific searches. Search key currently fixed
290
+ to &#39;Q&#39; (exact match) type search.
291
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
292
+ point 1 (Software using Semantic Versioning MUST declare a public
293
+ API. This API could be declared in the code itself or exist strictly
294
+ in documentation. However it is done, it should be precise and
295
+ comprehensive.)</pre>
296
+
297
+ <h1 id="label-Version+9.0.1">Version 9.0.1<span><a href="#label-Version+9.0.1">&para;</a> <a href="#top">&uarr;</a></span></h1>
298
+
299
+ <pre>* PATCH updating gem dependencies.
300
+ * MAJOR moving from a_gem.required_ruby_version = &#39;~&gt; 2.1&#39; to
301
+ a_gem.required_ruby_version = &#39;~&gt; 2.2&#39;.
302
+ * FIXED BUG #45501
303
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
304
+ allow user asking for specific searches. Search key currently fixed
305
+ to &#39;Q&#39; (exact match) type search.
306
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
307
+ point 1 (Software using Semantic Versioning MUST declare a public
308
+ API. This API could be declared in the code itself or exist strictly
309
+ in documentation. However it is done, it should be precise and
310
+ comprehensive.)</pre>
311
+
312
+ <h1 id="label-Version+8.0.1">Version 8.0.1<span><a href="#label-Version+8.0.1">&para;</a> <a href="#top">&uarr;</a></span></h1>
313
+
314
+ <pre>* PATCH updating gem dependencies.
315
+ * MAJOR moving from a_gem.required_ruby_version = &#39;~&gt; 2.0&#39; to
316
+ a_gem.required_ruby_version = &#39;~&gt; 2.1&#39;.
317
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
318
+ allow user asking for specific searches. Search key currently fixed
319
+ to &#39;Q&#39; (exact match) type search.
320
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
321
+ point 1 (Software using Semantic Versioning MUST declare a public
322
+ API. This API could be declared in the code itself or exist strictly
323
+ in documentation. However it is done, it should be precise and
324
+ comprehensive.)
325
+ * NOTES: modifications are now listed as MAJOR, MINOR and PATCH, to
326
+ better highlight version numbering, according to Semantic Versioning
327
+ Specification (SemVer) at http://semver.org/.</pre>
328
+
329
+ <h1 id="label-Version+7.1.3.pre">Version 7.1.3.pre<span><a href="#label-Version+7.1.3.pre">&para;</a> <a href="#top">&uarr;</a></span></h1>
330
+
331
+ <pre>* PATCH restoring key configuration as allowed parameter, to allow
332
+ user asking for specific searches. Search key currently fixed to &#39;Q&#39;
333
+ (exact match) type search.
334
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
335
+ point 1 (Software using Semantic Versioning MUST declare a public
336
+ API. This API could be declared in the code itself or exist strictly
337
+ in documentation. However it is done, it should be precise and
338
+ comprehensive.)
339
+ * NOTES: modifications are now listed as MAJOR, MINOR and PATCH, to
340
+ better highlight version numbering, according to Semantic Versioning
341
+ Specification (SemVer) at http://semver.org/.</pre>
342
+
343
+ <h1 id="label-Version+7.1.2">Version 7.1.2<span><a href="#label-Version+7.1.2">&para;</a> <a href="#top">&uarr;</a></span></h1>
344
+
345
+ <pre>* PATCH updating gem dependencies.
346
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
347
+ allow user asking for specific searches. Search key currently fixed
348
+ to &#39;Q&#39; (exact match) type search.
349
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
350
+ point 1 (Software using Semantic Versioning MUST declare a public
351
+ API. This API could be declared in the code itself or exist strictly
352
+ in documentation. However it is done, it should be precise and
353
+ comprehensive.)
354
+ * NOTES: modifications are now listed as MAJOR, MINOR and PATCH, to
355
+ better highlight version numbering, according to Semantic Versioning
356
+ Specification (SemVer) at http://semver.org/.</pre>
357
+
358
+ <h1 id="label-Version+7.1.1">Version 7.1.1<span><a href="#label-Version+7.1.1">&para;</a> <a href="#top">&uarr;</a></span></h1>
359
+
360
+ <pre>* PATCH Updating authors&#39; and contributors&#39; names.
361
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
362
+ allow user asking for specific searches. Search key currently fixed
363
+ to &#39;Q&#39; (exact match) type search.
364
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
365
+ point 1 (Software using Semantic Versioning MUST declare a public
366
+ API. This API could be declared in the code itself or exist strictly
367
+ in documentation. However it is done, it should be precise and
368
+ comprehensive.)
369
+ * NOTES: modifications are now listed as MAJOR, MINOR and PATCH, to
370
+ better highlight version numbering, according to Semantic Versioning
371
+ Specification (SemVer) at http://semver.org/.</pre>
372
+
373
+ <h1 id="label-Version+7.1.0">Version 7.1.0<span><a href="#label-Version+7.1.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
374
+
375
+ <pre>* MINOR Adding actual (uri) usage examples.
376
+ * PATCH updating README.md file with modifications from 7.x.x version.
377
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
378
+ allow user asking for specific searches. Search key currently fixed
379
+ to &#39;Q&#39; (exact match) type search.
380
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
381
+ point 1 (Software using Semantic Versioning MUST declare a public
382
+ API. This API could be declared in the code itself or exist strictly
383
+ in documentation. However it is done, it should be precise and
384
+ comprehensive.)
385
+ * NOTES: modifications are now listed as MAJOR, MINOR and PATCH, to
386
+ better highlight version numbering, according to Semantic Versioning
387
+ Specification (SemVer) at http://semver.org/.</pre>
388
+
389
+ <h1 id="label-Version+7.0.0">Version 7.0.0<span><a href="#label-Version+7.0.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
390
+
391
+ <pre>* PATCH updating gem dependencies.
392
+ * MAJOR modification: removing language configuration, dictionary is
393
+ enough.
394
+ * MAJOR *** TO BE COMPLETED *** modification: adding back (see 6.0.1)
395
+ key configuration, to ask for specific searches.
396
+ *** TO BE COMPLETED *** Search key currently fixed to &#39;Q&#39; (exact
397
+ match) type search.
398
+ * MAJOR modification: changing parameters behaviours and checks:
399
+ dict parameter allows only numeric codes (as strings) or (exact)
400
+ names; display parameter allows only proper values (as symbols);
401
+ server parameter allows only correct servers references (as
402
+ symbols).
403
+ * MAJOR modification: dictionary= method works as described above (for
404
+ dict method), but returns a human readable dictionary name
405
+ * MAJOR modification: server= method works as described above (for
406
+ server method), but returns a human readable server URI The
407
+ application itself is no more fail-safe: raises ArgumentError unless
408
+ arguments with proper values are provided.</pre>
409
+
410
+ <h1 id="label-Version+7.0.0.pre">Version 7.0.0.pre<span><a href="#label-Version+7.0.0.pre">&para;</a> <a href="#top">&uarr;</a></span></h1>
411
+
412
+ <pre>* MAJOR modification: removing language configuration, dictionary is
413
+ enough.
414
+ * MAJOR *** TO BE COMPLETED *** modification: adding back (see 6.0.1)
415
+ key configuration, to ask for specific searches. *** TO BE COMPLETED
416
+ *** Search key currently fixed to &#39;Q&#39; (exact match) type search.
417
+ * MAJOR modification: changing parameters behaviours and checks:
418
+ dict parameter allows only numeric codes (as strings) or (exact)
419
+ names; display parameter allows only proper values (as symbols);
420
+ server parameter allows only correct servers references (as
421
+ symbols).
422
+ * MAJOR modification: dictionary= method works as described above (for
423
+ dict method), but returns a human readable dictionary name
424
+ * MAJOR modification: server= method works as described above (for
425
+ server method), but returns a human readable server URI The
426
+ application itself is no more fail-safe: raises ArgumentError unless
427
+ arguments with proper values are provided.</pre>
428
+
429
+ <h1 id="label-Version+6.2.0">Version 6.2.0<span><a href="#label-Version+6.2.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
430
+
431
+ <pre>* +0.1.0 Adding actual (basics) usage examples.</pre>
432
+
433
+ <h1 id="label-Version+6.1.1">Version 6.1.1<span><a href="#label-Version+6.1.1">&para;</a> <a href="#top">&uarr;</a></span></h1>
434
+
435
+ <pre>* +0.0.1 Improvements of tests (due to some... *cough* *cough* bugs
436
+ *cough*).
437
+ * +0.1.0 Improving the README file with full description and actual
438
+ usage examples.</pre>
439
+
440
+ <h1 id="label-Version+6.0.1">Version 6.0.1<span><a href="#label-Version+6.0.1">&para;</a> <a href="#top">&uarr;</a></span></h1>
441
+
442
+ <pre>* +0.0.1 Updating gemspec versions.
443
+ * +1.0.0 :key and :search parameters removed and left to internal use
444
+ only.</pre>
445
+
446
+ <h1 id="label-Version+5.4.0">Version 5.4.0<span><a href="#label-Version+5.4.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
447
+
448
+ <pre>* +0.1.0 json_translate method added, completed and test-covered.
449
+ * +0.1.0 translate method completed and test-covered.</pre>
450
+
451
+ <h1 id="label-Version+5.2.2">Version 5.2.2<span><a href="#label-Version+5.2.2">&para;</a> <a href="#top">&uarr;</a></span></h1>
452
+
453
+ <pre>* +0.0.1 Improving RDoc documentation.
454
+ * +0.0.1 Updating gems.
455
+ * +0.1.0 Modifying downloader to allow nil filename, so returning the
456
+ response body.</pre>
457
+
458
+ <h1 id="label-Version+5.1.3">Version 5.1.3<span><a href="#label-Version+5.1.3">&para;</a> <a href="#top">&uarr;</a></span></h1>
459
+
460
+ <pre>* +0.0.1 Updating gemspec versions.
461
+ * +0.0.1 Removing CACert root certificate.
462
+ * +0.0.1 Improving tests.
463
+ * +0.1.0 Adding json_uri method to associate word requested for
464
+ translation with its URI.
465
+ * +1.0.0 Renaming download method to translate.
466
+ * +1.0.0 Renaming raw method to raw_uri.
467
+ * +1.0.0 Renaming translate method to uri.</pre>
468
+
469
+ <h1 id="label-Version+2.11.2.pre.pre">Version 2.11.2.pre.pre<span><a href="#label-Version+2.11.2.pre.pre">&para;</a> <a href="#top">&uarr;</a></span></h1>
470
+
471
+ <pre>* +0.0.1 Sperimentally updating search and key parameters for foreign
472
+ languages.</pre>
473
+
474
+ <h1 id="label-Version+2.11.2.pre">Version 2.11.2.pre<span><a href="#label-Version+2.11.2.pre">&para;</a> <a href="#top">&uarr;</a></span></h1>
475
+
476
+ <pre>* +0.0.1 Sperimentally updating search and key parameters for foreign
477
+ languages.</pre>
478
+
479
+ <h1 id="label-Version+2.11.1">Version 2.11.1<span><a href="#label-Version+2.11.1">&para;</a> <a href="#top">&uarr;</a></span></h1>
480
+
481
+ <pre>* +0.0.1 Updating doc files.
482
+ * +0.1.0 Swedish translation (done with Google Translate).
483
+ * +0.1.0 Slovenian translation (done with Google Translate).
484
+ * +0.1.0 Russian translation.
485
+ * +0.1.0 Dutch translation (done with Google Translate).
486
+ * +0.1.0 Hungarian translation (done with Google Translate).
487
+ * +0.1.0 French translation (done with Google Translate).
488
+ * +0.1.0 Spanish translation (done with Google Translate).
489
+ * +0.1.0 German translation (done with Google Translate).</pre>
490
+
491
+ <h1 id="label-Version+2.3.1">Version 2.3.1<span><a href="#label-Version+2.3.1">&para;</a> <a href="#top">&uarr;</a></span></h1>
492
+
493
+ <pre>* +0.1.1 Adding raw method tests.
494
+ * +0.1.0 Adding raw method to create URI for raw display.
495
+ * IN PROGRESS: Adding parse management for key and seach parameters.</pre>
496
+
497
+ <h1 id="label-Version+2.2.15">Version 2.2.15<span><a href="#label-Version+2.2.15">&para;</a> <a href="#top">&uarr;</a></span></h1>
498
+
499
+ <pre>* +0.0.1 Adding (incomplete) supplemental language for tests purposes.
500
+ * +0.0.1 Reworking parse management (and tests) for translate.
501
+ * IN PROGRESS: Adding parse management for key and seach parameters.</pre>
502
+
503
+ <h1 id="label-Version+2.2.13">Version 2.2.13<span><a href="#label-Version+2.2.13">&para;</a> <a href="#top">&uarr;</a></span></h1>
504
+
505
+ <pre>* +0.0.1 Some internal refactoring.
506
+ * +0.0.1 Reworking parse management (and tests) for language.
507
+ * +0.0.1 Reworking parse management (and tests) for display.
508
+ * IN PROGRESS: Adding parse management for key and seach parameters.
509
+ * IN PROGRESS: almost everything... not yet usable, sorry.</pre>
510
+
511
+ <h1 id="label-Version+2.2.11">Version 2.2.11<span><a href="#label-Version+2.2.11">&para;</a> <a href="#top">&uarr;</a></span></h1>
512
+
513
+ <pre>* +0.1.0 Coverage report (and simplecov gem) dependency added.
514
+ * +0.0.1 Adding parse management (and tests) for language.
515
+ * +0.0.1 README and gem description updated.
516
+ * IN PROGRESS: Adding parse management for key and seach parameters.
517
+ * IN PROGRESS: almost everything... not yet usable, sorry.</pre>
518
+
519
+ <h1 id="label-Version+2.1.9">Version 2.1.9<span><a href="#label-Version+2.1.9">&para;</a> <a href="#top">&uarr;</a></span></h1>
520
+
521
+ <pre>* +0.0.1 Adding enforce_available_locales variabile explicits setting
522
+ to avoid warning.
523
+ * +0.0.1 Adding WWWJDic reference URI to README.md.
524
+ * +0.0.1 Reworking the test on translate method.
525
+ * +0.0.1 Reworking the test on server(=) and language(=) methods.
526
+ * +0.0.1 Adding root.crt from CACert.
527
+ * IN PROGRESS: Adding parse management for key and seach parameters.
528
+ * IN PROGRESS: almost everything... not yet usable, sorry.</pre>
529
+
530
+ <h1 id="label-Version+2.1.4">Version 2.1.4<span><a href="#label-Version+2.1.4">&para;</a> <a href="#top">&uarr;</a></span></h1>
531
+
532
+ <pre>* +0.0.1 Minor updates to document (removing &quot;future features&quot; things).
533
+ * IN PROGRESS: almost everything... not yet usable, sorry.</pre>
534
+
535
+ <h1 id="label-Version+2.1.3">Version 2.1.3<span><a href="#label-Version+2.1.3">&para;</a> <a href="#top">&uarr;</a></span></h1>
536
+
537
+ <pre>* +0.0.1 Properly adding display mode to the final URI.
538
+ * +0.0.1 Minor refactoring.
539
+ * IN PROGRESS: almost everything... not yet usable, sorry.</pre>
540
+
541
+ <h1 id="label-Version+2.1.1">Version 2.1.1<span><a href="#label-Version+2.1.1">&para;</a> <a href="#top">&uarr;</a></span></h1>
542
+
543
+ <pre>* +0.0.1 Adding parse management (and test) for dictionary.
544
+ * +0.1.0 Adding basic translate feature, working only from Japanese to
545
+ another language.
546
+ * +1.0.0 dictionary= method changed to language=.
547
+ * IN PROGRESS: almost everything... not yet usable, sorry.</pre>
548
+
549
+ <h1 id="label-Version+1.2.4">Version 1.2.4<span><a href="#label-Version+1.2.4">&para;</a> <a href="#top">&uarr;</a></span></h1>
550
+
551
+ <pre>* +0.0.1 Adding parse management (and test) for dictionary.
552
+ * +0.0.1 Adding parse management (and test) for server.
553
+ * IN PROGRESS: almost everything... not yet usable, sorry.</pre>
554
+
555
+ <h1 id="label-Version+1.2.2">Version 1.2.2<span><a href="#label-Version+1.2.2">&para;</a> <a href="#top">&uarr;</a></span></h1>
556
+
557
+ <pre>* +0.1.0 Adding method to set and read the preferred server.
558
+ * +0.0.1 Adding newer reference URI at EDRDG.
559
+ * +0.0.1 Adding parse management for dictionaries.
560
+ * IN PROGRESS: almost everything... not yet usable, sorry.</pre>
561
+
562
+ <h1 id="label-Version+1.1.2">Version 1.1.2<span><a href="#label-Version+1.1.2">&para;</a> <a href="#top">&uarr;</a></span></h1>
563
+
564
+ <pre>* +0.0.1 Adding parse management for display type (M = backdoor entry
565
+ (regular display) or Z = backdoor entry (raw dictionary display)).
566
+ * +0.0.1 SecurityError added to (yet) unimplemented translate method.
567
+ * +0.1.0 Basic I18N added. Strings to be changed.
568
+ * +1.0.0 dictionary! method changed to dictionary=.
569
+ * IN PROGRESS: almost everything... not yet really usable, sorry.</pre>
570
+
571
+ <h1 id="label-Version+0.0.0">Version 0.0.0<span><a href="#label-Version+0.0.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
572
+
573
+ <pre>* Project structure, gem attempts, ...</pre>
574
+ <hr>
575
+
576
+ <p>wwwjdic</p>
577
+
578
+ <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
579
+
580
+ <p>This file is part of wwwjdic.</p>
581
+
582
+ <p>wwwjdic is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.</p>
583
+
584
+ <p>wwwjdic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.</p>
585
+
586
+ <p>You should have received a copy of the GNU General Public License along with wwwjdic. If not, see &lt;<a href="http://www.gnu.org/licenses">www.gnu.org/licenses</a>/&gt;.</p>
587
+
588
+ </main>
589
+
590
+
591
+
592
+ <footer id="validator-badges" role="contentinfo">
593
+ <p><a href="https://validator.w3.org/check/referer">Validate</a>
594
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
595
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
596
+ </footer>
597
+