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
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 18fd836dcc7f4cdfaf5a1e558d4c184b78e48862720a320df568529e457cc5ea
4
+ data.tar.gz: f2e33c8588457a59368368be7dda0070f6d99c8816fbd8ed80b8a30c6a3065e1
5
+ SHA512:
6
+ metadata.gz: f6b3279337e90f78ae7f48a26b5e5153000da68049a67693cd01bd0ba8fd9a6ccdd70a700b13dfa274db4df40bf3c3ca4782e1d6c5b89ab0e18b6bcee5b9d7b1
7
+ data.tar.gz: 31d96732e8891393ac5b4b2248b9aaa48b5af7e36eedfd7ce74abb4a48428a72939c249a166e4e9853f4e406ac7767dfea0fa3311c18fa3d44a83a2f92b258f7
data/CHANGELOG ADDED
@@ -0,0 +1,419 @@
1
+ = Version 13.0.0
2
+ * MAJOR moving from a_gem.required_ruby_version = '~> 2.5' to
3
+ a_gem.required_ruby_version = '~> 2.6'.
4
+ * PATCH updating gem dependencies.
5
+ * PATCH: add badges from Shields.IO
6
+ * IN PROGRESS: translation example.
7
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
8
+ allow user asking for specific searches. Search key currently fixed
9
+ to 'Q' (exact match) type search.
10
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
11
+ point 1 (Software using Semantic Versioning MUST declare a public
12
+ API. This API could be declared in the code itself or exist strictly
13
+ in documentation. However it is done, it should be precise and
14
+ comprehensive.)
15
+
16
+ = Version 12.0.0
17
+ * MAJOR moving from a_gem.required_ruby_version = '~> 2.4' to
18
+ a_gem.required_ruby_version = '~> 2.5'.
19
+ * PATCH updating gem dependencies.
20
+ * IN PROGRESS: translation example.
21
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
22
+ allow user asking for specific searches. Search key currently fixed
23
+ to 'Q' (exact match) type search.
24
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
25
+ point 1 (Software using Semantic Versioning MUST declare a public
26
+ API. This API could be declared in the code itself or exist strictly
27
+ in documentation. However it is done, it should be precise and
28
+ comprehensive.)
29
+
30
+ = Version 11.0.0
31
+ * MAJOR moving from a_gem.required_ruby_version = '~> 2.3' to
32
+ a_gem.required_ruby_version = '~> 2.4'.
33
+ * PATCH updating gem dependencies.
34
+ * IN PROGRESS: translation example.
35
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
36
+ allow user asking for specific searches. Search key currently fixed
37
+ to 'Q' (exact match) type search.
38
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
39
+ point 1 (Software using Semantic Versioning MUST declare a public
40
+ API. This API could be declared in the code itself or exist strictly
41
+ in documentation. However it is done, it should be precise and
42
+ comprehensive.)
43
+
44
+ = Version 10.0.0
45
+ * MAJOR moving from a_gem.required_ruby_version = '~> 2.2' to
46
+ a_gem.required_ruby_version = '~> 2.3'.
47
+ * PATCH updating gem dependencies.
48
+ * IN PROGRESS: translation example.
49
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
50
+ allow user asking for specific searches. Search key currently fixed
51
+ to 'Q' (exact match) type search.
52
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
53
+ point 1 (Software using Semantic Versioning MUST declare a public
54
+ API. This API could be declared in the code itself or exist strictly
55
+ in documentation. However it is done, it should be precise and
56
+ comprehensive.)
57
+
58
+ = Version 9.3.0
59
+ * MINOR: working to #45960: "content" field now contains translation
60
+ text as "meanings".
61
+ * PATCH updating gem dependencies.
62
+ * IN PROGRESS: translation example.
63
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
64
+ allow user asking for specific searches. Search key currently fixed
65
+ to 'Q' (exact match) type search.
66
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
67
+ point 1 (Software using Semantic Versioning MUST declare a public
68
+ API. This API could be declared in the code itself or exist strictly
69
+ in documentation. However it is done, it should be precise and
70
+ comprehensive.)
71
+
72
+ = Version 9.2.0
73
+ * MINOR: started working to #45558: "content" field now contains
74
+ translation lines split as array with "word", "kana" and "text".
75
+ * PATCH: using .exist? instead of .exists? for File check (removing
76
+ deprecated method).
77
+ * IN PROGRESS: translation example.
78
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
79
+ allow user asking for specific searches. Search key currently fixed
80
+ to 'Q' (exact match) type search.
81
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
82
+ point 1 (Software using Semantic Versioning MUST declare a public
83
+ API. This API could be declared in the code itself or exist strictly
84
+ in documentation. However it is done, it should be precise and
85
+ comprehensive.)
86
+
87
+ = Version 9.1.0
88
+ * MINOR: started working to #45558: lines field now contains simple
89
+ translation lines split as array.
90
+ * PATCH: using .exist? instead of .exists? for File check (removing
91
+ deprecated method).
92
+ * IN PROGRESS: translation example.
93
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
94
+ allow user asking for specific searches. Search key currently fixed
95
+ to 'Q' (exact match) type search.
96
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
97
+ point 1 (Software using Semantic Versioning MUST declare a public
98
+ API. This API could be declared in the code itself or exist strictly
99
+ in documentation. However it is done, it should be precise and
100
+ comprehensive.)
101
+
102
+ = Version 9.0.4
103
+ * PATCH: adding proper filename management (and save) for
104
+ json_translate.
105
+ * IN PROGRESS: translation example.
106
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
107
+ allow user asking for specific searches. Search key currently fixed
108
+ to 'Q' (exact match) type search.
109
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
110
+ point 1 (Software using Semantic Versioning MUST declare a public
111
+ API. This API could be declared in the code itself or exist strictly
112
+ in documentation. However it is done, it should be precise and
113
+ comprehensive.)
114
+
115
+ = Version 9.0.3
116
+ * FIXED BUG #45557
117
+ * IN PROGRESS: translation example.
118
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
119
+ allow user asking for specific searches. Search key currently fixed
120
+ to 'Q' (exact match) type search.
121
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
122
+ point 1 (Software using Semantic Versioning MUST declare a public
123
+ API. This API could be declared in the code itself or exist strictly
124
+ in documentation. However it is done, it should be precise and
125
+ comprehensive.)
126
+
127
+ = Version 9.0.2
128
+ * FIXED BUG #45535
129
+ * IN PROGRESS: translation example.
130
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
131
+ allow user asking for specific searches. Search key currently fixed
132
+ to 'Q' (exact match) type search.
133
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
134
+ point 1 (Software using Semantic Versioning MUST declare a public
135
+ API. This API could be declared in the code itself or exist strictly
136
+ in documentation. However it is done, it should be precise and
137
+ comprehensive.)
138
+
139
+ = Version 9.0.2-pre
140
+ * IN PROGRESS: BUG #45535
141
+ * IN PROGRESS: translation example.
142
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
143
+ allow user asking for specific searches. Search key currently fixed
144
+ to 'Q' (exact match) type search.
145
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
146
+ point 1 (Software using Semantic Versioning MUST declare a public
147
+ API. This API could be declared in the code itself or exist strictly
148
+ in documentation. However it is done, it should be precise and
149
+ comprehensive.)
150
+
151
+ = Version 9.0.1
152
+ * PATCH updating gem dependencies.
153
+ * MAJOR moving from a_gem.required_ruby_version = '~> 2.1' to
154
+ a_gem.required_ruby_version = '~> 2.2'.
155
+ * FIXED BUG #45501
156
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
157
+ allow user asking for specific searches. Search key currently fixed
158
+ to 'Q' (exact match) type search.
159
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
160
+ point 1 (Software using Semantic Versioning MUST declare a public
161
+ API. This API could be declared in the code itself or exist strictly
162
+ in documentation. However it is done, it should be precise and
163
+ comprehensive.)
164
+
165
+ = Version 8.0.1
166
+ * PATCH updating gem dependencies.
167
+ * MAJOR moving from a_gem.required_ruby_version = '~> 2.0' to
168
+ a_gem.required_ruby_version = '~> 2.1'.
169
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
170
+ allow user asking for specific searches. Search key currently fixed
171
+ to 'Q' (exact match) type search.
172
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
173
+ point 1 (Software using Semantic Versioning MUST declare a public
174
+ API. This API could be declared in the code itself or exist strictly
175
+ in documentation. However it is done, it should be precise and
176
+ comprehensive.)
177
+ * NOTES: modifications are now listed as MAJOR, MINOR and PATCH, to
178
+ better highlight version numbering, according to Semantic Versioning
179
+ Specification (SemVer) at http://semver.org/.
180
+
181
+ = Version 7.1.3.pre
182
+ * PATCH restoring key configuration as allowed parameter, to allow
183
+ user asking for specific searches. Search key currently fixed to 'Q'
184
+ (exact match) type search.
185
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
186
+ point 1 (Software using Semantic Versioning MUST declare a public
187
+ API. This API could be declared in the code itself or exist strictly
188
+ in documentation. However it is done, it should be precise and
189
+ comprehensive.)
190
+ * NOTES: modifications are now listed as MAJOR, MINOR and PATCH, to
191
+ better highlight version numbering, according to Semantic Versioning
192
+ Specification (SemVer) at http://semver.org/.
193
+
194
+ = Version 7.1.2
195
+ * PATCH updating gem dependencies.
196
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
197
+ allow user asking for specific searches. Search key currently fixed
198
+ to 'Q' (exact match) type search.
199
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
200
+ point 1 (Software using Semantic Versioning MUST declare a public
201
+ API. This API could be declared in the code itself or exist strictly
202
+ in documentation. However it is done, it should be precise and
203
+ comprehensive.)
204
+ * NOTES: modifications are now listed as MAJOR, MINOR and PATCH, to
205
+ better highlight version numbering, according to Semantic Versioning
206
+ Specification (SemVer) at http://semver.org/.
207
+
208
+ = Version 7.1.1
209
+ * PATCH Updating authors' and contributors' names.
210
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
211
+ allow user asking for specific searches. Search key currently fixed
212
+ to 'Q' (exact match) type search.
213
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
214
+ point 1 (Software using Semantic Versioning MUST declare a public
215
+ API. This API could be declared in the code itself or exist strictly
216
+ in documentation. However it is done, it should be precise and
217
+ comprehensive.)
218
+ * NOTES: modifications are now listed as MAJOR, MINOR and PATCH, to
219
+ better highlight version numbering, according to Semantic Versioning
220
+ Specification (SemVer) at http://semver.org/.
221
+
222
+ = Version 7.1.0
223
+ * MINOR Adding actual (uri) usage examples.
224
+ * PATCH updating README.md file with modifications from 7.x.x version.
225
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
226
+ allow user asking for specific searches. Search key currently fixed
227
+ to 'Q' (exact match) type search.
228
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
229
+ point 1 (Software using Semantic Versioning MUST declare a public
230
+ API. This API could be declared in the code itself or exist strictly
231
+ in documentation. However it is done, it should be precise and
232
+ comprehensive.)
233
+ * NOTES: modifications are now listed as MAJOR, MINOR and PATCH, to
234
+ better highlight version numbering, according to Semantic Versioning
235
+ Specification (SemVer) at http://semver.org/.
236
+
237
+ = Version 7.0.0
238
+ * PATCH updating gem dependencies.
239
+ * MAJOR modification: removing language configuration, dictionary is
240
+ enough.
241
+ * MAJOR *** TO BE COMPLETED *** modification: adding back (see 6.0.1)
242
+ key configuration, to ask for specific searches.
243
+ *** TO BE COMPLETED *** Search key currently fixed to 'Q' (exact
244
+ match) type search.
245
+ * MAJOR modification: changing parameters behaviours and checks:
246
+ dict parameter allows only numeric codes (as strings) or (exact)
247
+ names; display parameter allows only proper values (as symbols);
248
+ server parameter allows only correct servers references (as
249
+ symbols).
250
+ * MAJOR modification: dictionary= method works as described above (for
251
+ dict method), but returns a human readable dictionary name
252
+ * MAJOR modification: server= method works as described above (for
253
+ server method), but returns a human readable server URI The
254
+ application itself is no more fail-safe: raises ArgumentError unless
255
+ arguments with proper values are provided.
256
+
257
+ = Version 7.0.0.pre
258
+ * MAJOR modification: removing language configuration, dictionary is
259
+ enough.
260
+ * MAJOR *** TO BE COMPLETED *** modification: adding back (see 6.0.1)
261
+ key configuration, to ask for specific searches. *** TO BE COMPLETED
262
+ *** Search key currently fixed to 'Q' (exact match) type search.
263
+ * MAJOR modification: changing parameters behaviours and checks:
264
+ dict parameter allows only numeric codes (as strings) or (exact)
265
+ names; display parameter allows only proper values (as symbols);
266
+ server parameter allows only correct servers references (as
267
+ symbols).
268
+ * MAJOR modification: dictionary= method works as described above (for
269
+ dict method), but returns a human readable dictionary name
270
+ * MAJOR modification: server= method works as described above (for
271
+ server method), but returns a human readable server URI The
272
+ application itself is no more fail-safe: raises ArgumentError unless
273
+ arguments with proper values are provided.
274
+
275
+ = Version 6.2.0
276
+ * +0.1.0 Adding actual (basics) usage examples.
277
+
278
+ = Version 6.1.1
279
+ * +0.0.1 Improvements of tests (due to some... *cough* *cough* bugs
280
+ *cough*).
281
+ * +0.1.0 Improving the README file with full description and actual
282
+ usage examples.
283
+
284
+ = Version 6.0.1
285
+ * +0.0.1 Updating gemspec versions.
286
+ * +1.0.0 :key and :search parameters removed and left to internal use
287
+ only.
288
+
289
+ = Version 5.4.0
290
+ * +0.1.0 json_translate method added, completed and test-covered.
291
+ * +0.1.0 translate method completed and test-covered.
292
+
293
+ = Version 5.2.2
294
+ * +0.0.1 Improving RDoc documentation.
295
+ * +0.0.1 Updating gems.
296
+ * +0.1.0 Modifying downloader to allow nil filename, so returning the
297
+ response body.
298
+
299
+ = Version 5.1.3
300
+ * +0.0.1 Updating gemspec versions.
301
+ * +0.0.1 Removing CACert root certificate.
302
+ * +0.0.1 Improving tests.
303
+ * +0.1.0 Adding json_uri method to associate word requested for
304
+ translation with its URI.
305
+ * +1.0.0 Renaming download method to translate.
306
+ * +1.0.0 Renaming raw method to raw_uri.
307
+ * +1.0.0 Renaming translate method to uri.
308
+
309
+ = Version 2.11.2.pre.pre
310
+ * +0.0.1 Sperimentally updating search and key parameters for foreign
311
+ languages.
312
+
313
+ = Version 2.11.2.pre
314
+ * +0.0.1 Sperimentally updating search and key parameters for foreign
315
+ languages.
316
+
317
+ = Version 2.11.1
318
+ * +0.0.1 Updating doc files.
319
+ * +0.1.0 Swedish translation (done with Google Translate).
320
+ * +0.1.0 Slovenian translation (done with Google Translate).
321
+ * +0.1.0 Russian translation.
322
+ * +0.1.0 Dutch translation (done with Google Translate).
323
+ * +0.1.0 Hungarian translation (done with Google Translate).
324
+ * +0.1.0 French translation (done with Google Translate).
325
+ * +0.1.0 Spanish translation (done with Google Translate).
326
+ * +0.1.0 German translation (done with Google Translate).
327
+
328
+ = Version 2.3.1
329
+ * +0.1.1 Adding raw method tests.
330
+ * +0.1.0 Adding raw method to create URI for raw display.
331
+ * IN PROGRESS: Adding parse management for key and seach parameters.
332
+
333
+ = Version 2.2.15
334
+ * +0.0.1 Adding (incomplete) supplemental language for tests purposes.
335
+ * +0.0.1 Reworking parse management (and tests) for translate.
336
+ * IN PROGRESS: Adding parse management for key and seach parameters.
337
+
338
+ = Version 2.2.13
339
+ * +0.0.1 Some internal refactoring.
340
+ * +0.0.1 Reworking parse management (and tests) for language.
341
+ * +0.0.1 Reworking parse management (and tests) for display.
342
+ * IN PROGRESS: Adding parse management for key and seach parameters.
343
+ * IN PROGRESS: almost everything... not yet usable, sorry.
344
+
345
+ = Version 2.2.11
346
+ * +0.1.0 Coverage report (and simplecov gem) dependency added.
347
+ * +0.0.1 Adding parse management (and tests) for language.
348
+ * +0.0.1 README and gem description updated.
349
+ * IN PROGRESS: Adding parse management for key and seach parameters.
350
+ * IN PROGRESS: almost everything... not yet usable, sorry.
351
+
352
+ = Version 2.1.9
353
+ * +0.0.1 Adding enforce_available_locales variabile explicits setting
354
+ to avoid warning.
355
+ * +0.0.1 Adding WWWJDic reference URI to README.md.
356
+ * +0.0.1 Reworking the test on translate method.
357
+ * +0.0.1 Reworking the test on server(=) and language(=) methods.
358
+ * +0.0.1 Adding root.crt from CACert.
359
+ * IN PROGRESS: Adding parse management for key and seach parameters.
360
+ * IN PROGRESS: almost everything... not yet usable, sorry.
361
+
362
+ = Version 2.1.4
363
+ * +0.0.1 Minor updates to document (removing "future features" things).
364
+ * IN PROGRESS: almost everything... not yet usable, sorry.
365
+
366
+ = Version 2.1.3
367
+ * +0.0.1 Properly adding display mode to the final URI.
368
+ * +0.0.1 Minor refactoring.
369
+ * IN PROGRESS: almost everything... not yet usable, sorry.
370
+
371
+ = Version 2.1.1
372
+ * +0.0.1 Adding parse management (and test) for dictionary.
373
+ * +0.1.0 Adding basic translate feature, working only from Japanese to
374
+ another language.
375
+ * +1.0.0 dictionary= method changed to language=.
376
+ * IN PROGRESS: almost everything... not yet usable, sorry.
377
+
378
+ = Version 1.2.4
379
+ * +0.0.1 Adding parse management (and test) for dictionary.
380
+ * +0.0.1 Adding parse management (and test) for server.
381
+ * IN PROGRESS: almost everything... not yet usable, sorry.
382
+
383
+ = Version 1.2.2
384
+ * +0.1.0 Adding method to set and read the preferred server.
385
+ * +0.0.1 Adding newer reference URI at EDRDG.
386
+ * +0.0.1 Adding parse management for dictionaries.
387
+ * IN PROGRESS: almost everything... not yet usable, sorry.
388
+
389
+ = Version 1.1.2
390
+ * +0.0.1 Adding parse management for display type (M = backdoor entry
391
+ (regular display) or Z = backdoor entry (raw dictionary display)).
392
+ * +0.0.1 SecurityError added to (yet) unimplemented translate method.
393
+ * +0.1.0 Basic I18N added. Strings to be changed.
394
+ * +1.0.0 dictionary! method changed to dictionary=.
395
+ * IN PROGRESS: almost everything... not yet really usable, sorry.
396
+
397
+ = Version 0.0.0
398
+ * Project structure, gem attempts, ...
399
+
400
+ ----
401
+
402
+ wwwjdic
403
+
404
+ Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
405
+
406
+ This file is part of wwwjdic.
407
+
408
+ wwwjdic is free software: you can redistribute it and/or modify it under
409
+ the terms of the GNU General Public License as published by the Free
410
+ Software Foundation, either version 3 of the License, or (at your
411
+ option) any later version.
412
+
413
+ wwwjdic is distributed in the hope that it will be useful, but WITHOUT
414
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
415
+ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
416
+ more details.
417
+
418
+ You should have received a copy of the GNU General Public License along
419
+ with wwwjdic. If not, see <http://www.gnu.org/licenses/>.