wwwjdic 13.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.
Files changed (97) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +63 -1
  3. data/Gemfile +9 -1
  4. data/README.md +499 -225
  5. data/Rakefile +12 -3
  6. data/copyright.md +17 -29
  7. data/examples/basics.rb +55 -45
  8. data/examples/translate.rb +161 -86
  9. data/examples/uri.rb +50 -78
  10. data/html/CHANGELOG.html +80 -21
  11. data/html/COPYING_md.html +13 -24
  12. data/html/Gemfile.html +12 -21
  13. data/html/Object.html +810 -45
  14. data/html/README_md.html +309 -161
  15. data/html/Rakefile.html +15 -24
  16. data/html/WWWJDic.html +41 -81
  17. data/html/WWWJDic/ParsableDuckType.html +15 -34
  18. data/html/WWWJDic/Parser.html +25 -64
  19. data/html/WWWJDic/Parsers.html +8 -13
  20. data/html/WWWJDic/Parsers/Dict.html +29 -54
  21. data/html/WWWJDic/Parsers/Display.html +24 -47
  22. data/html/WWWJDic/Parsers/Key.html +25 -48
  23. data/html/WWWJDic/Parsers/Search.html +19 -38
  24. data/html/WWWJDic/Parsers/Server.html +24 -47
  25. data/html/WWWJDic/Splitter.html +49 -142
  26. data/html/WWWJDic/Utils.html +9 -14
  27. data/html/WWWJDic/Utils/Downloader.html +8 -13
  28. data/html/WWWJDic/Utils/Downloader/Downloader.html +29 -63
  29. data/html/WWWJDic/Utils/Raisers.html +21 -72
  30. data/html/WWWJDic/WWWJDic.html +131 -312
  31. data/html/copyright_md.html +206 -225
  32. data/html/created.rid +33 -58
  33. data/html/css/rdoc.css +35 -6
  34. data/html/index.html +301 -169
  35. data/html/js/darkfish.js +22 -99
  36. data/html/js/navigation.js +4 -40
  37. data/html/js/navigation.js.gz +0 -0
  38. data/html/js/search.js +32 -31
  39. data/html/js/search_index.js +1 -1
  40. data/html/js/search_index.js.gz +0 -0
  41. data/html/js/searcher.js +6 -6
  42. data/html/js/searcher.js.gz +0 -0
  43. data/html/table_of_contents.html +160 -197
  44. data/lib/wwwjdic.rb +16 -15
  45. data/lib/wwwjdic/application.rb +69 -36
  46. data/lib/wwwjdic/constants.rb +48 -10
  47. data/lib/wwwjdic/locales/de.yml +9 -4
  48. data/lib/wwwjdic/locales/en.yml +9 -4
  49. data/lib/wwwjdic/locales/es.yml +9 -4
  50. data/lib/wwwjdic/locales/fr.yml +9 -4
  51. data/lib/wwwjdic/locales/hu.yml +9 -4
  52. data/lib/wwwjdic/locales/it.yml +9 -4
  53. data/lib/wwwjdic/locales/ja.yml +11 -5
  54. data/lib/wwwjdic/locales/nl.yml +9 -4
  55. data/lib/wwwjdic/locales/ru.yml +9 -4
  56. data/lib/wwwjdic/locales/sl.yml +9 -4
  57. data/lib/wwwjdic/locales/sv.yml +9 -4
  58. data/lib/wwwjdic/parser.rb +15 -8
  59. data/lib/wwwjdic/parsers/dict.rb +13 -8
  60. data/lib/wwwjdic/parsers/display.rb +10 -3
  61. data/lib/wwwjdic/parsers/key.rb +11 -3
  62. data/lib/wwwjdic/parsers/search.rb +12 -3
  63. data/lib/wwwjdic/parsers/server.rb +10 -3
  64. data/lib/wwwjdic/utils/downloader.rb +27 -30
  65. data/lib/wwwjdic/utils/raisers.rb +14 -15
  66. data/lib/wwwjdic/utils/splitter.rb +33 -18
  67. data/lib/wwwjdic/version.rb +28 -20
  68. data/test/test_helper.rb +12 -1
  69. data/test/test_wwwjdic.rb +12 -4
  70. data/test/wwwjdic/locales/de.yml +9 -1
  71. data/test/wwwjdic/locales/en.yml +9 -1
  72. data/test/wwwjdic/locales/es.yml +9 -1
  73. data/test/wwwjdic/locales/fr.yml +9 -1
  74. data/test/wwwjdic/locales/hu.yml +9 -1
  75. data/test/wwwjdic/locales/it.yml +10 -1
  76. data/test/wwwjdic/locales/ja.yml +11 -2
  77. data/test/wwwjdic/locales/nl.yml +9 -1
  78. data/test/wwwjdic/locales/ru.yml +9 -1
  79. data/test/wwwjdic/locales/sl.yml +9 -1
  80. data/test/wwwjdic/locales/sv.yml +9 -1
  81. data/test/wwwjdic/locales/test_locales.rb +43 -24
  82. data/test/wwwjdic/parsers/test_dict.rb +67 -37
  83. data/test/wwwjdic/parsers/test_display.rb +13 -5
  84. data/test/wwwjdic/parsers/test_key.rb +12 -4
  85. data/test/wwwjdic/parsers/test_server.rb +13 -5
  86. data/test/wwwjdic/test_application.rb +201 -149
  87. data/test/wwwjdic/test_parsable_duck_type.rb +11 -6
  88. data/test/wwwjdic/utils/test_downloader.rb +9 -1
  89. data/test/wwwjdic/utils/test_raisers.rb +48 -29
  90. data/wwwjdic.gemspec +46 -26
  91. metadata +55 -43
  92. data/acknowledgements.md +0 -55
  93. data/authors.md +0 -67
  94. data/html/acknowledgements_md.html +0 -149
  95. data/html/authors_md.html +0 -181
  96. data/html/js/jquery.js +0 -4
  97. data/html/wwwjdic_gemspec.html +0 -161
data/examples/uri.rb CHANGED
@@ -1,6 +1,10 @@
1
+ # frozen_string_literal: true
2
+
1
3
  #--
2
4
  # wwwjdic
3
- # Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
5
+ # rubocop:disable Style/AsciiComments
6
+ # © 2014 Marco Bresciani
7
+ # rubocop:enable Style/AsciiComments
4
8
  #
5
9
  # This file is part of wwwjdic.
6
10
  #
@@ -16,114 +20,82 @@
16
20
  #
17
21
  # You should have received a copy of the GNU General Public License
18
22
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
23
+ #
24
+ # SPDX-FileCopyrightText: 2014 Marco Bresciani
25
+ #
26
+ # SPDX-License-Identifier: GPL-3.0-or-later
19
27
  #++
20
28
 
21
29
  require_relative '../lib/wwwjdic'
22
30
 
23
31
  i = 0
24
32
 
25
- # Creates the WWWJDic object
26
- puts '------------------------------------------'
27
- puts "Basics: '#{i}'. Creates the WWWJDic object."
33
+ # Create the WWWJDic object
34
+ puts '=========================================='
35
+ puts "URI #{i}: Create the WWWJDic object."
28
36
  puts 'irb(main):001:0> a_wwwjdic = WWWJDic::breener'
29
- a_wwwjdic = WWWJDic::breener
37
+ a_wwwjdic = WWWJDic.breener
38
+ puts '------------------------------------------'
30
39
  puts
31
40
  i += 1
32
41
 
33
- # Computes the default basic URI to translate '翻訳' in English
34
- # (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1MUQ%E7%BF%BB%E8%A8%B3)
35
- puts '------------------------------------------'
36
- puts "Basics: '#{i}'. Computes the default basic URI to translate '翻訳' in English (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1MUQ%E7%BF%BB%E8%A8%B3)."
42
+ # rubocop:disable Style/AsciiComments
43
+ # Compute the default basic URI to translate '翻訳' in English
44
+ # rubocop:enable Style/AsciiComments
45
+ # http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1MUQ%E7%BF%BB%E8%A8%B3
46
+ puts '=========================================='
47
+ puts "URI #{i}: Compute the default basic URI to translate '翻訳' in English (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1MUQ%E7%BF%BB%E8%A8%B3)."
37
48
  puts "irb(main):001:0> a_wwwjdic.uri '翻訳'"
38
49
  puts a_wwwjdic.uri '翻訳'
50
+ puts '------------------------------------------'
39
51
  puts
40
52
  i += 1
41
53
 
42
- # Computes the default raw URI to translate '翻訳' in English
43
- # (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1ZUQ%E7%BF%BB%E8%A8%B3)
44
- puts '------------------------------------------'
45
- puts "Basics: '#{i}'. Computes the default raw URI to translate '翻訳' in English (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1ZUQ%E7%BF%BB%E8%A8%B3)."
54
+ # rubocop:disable Style/AsciiComments
55
+ # Compute the default raw URI to translate '翻訳' in English
56
+ # rubocop:enable Style/AsciiComments
57
+ # http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1ZUQ%E7%BF%BB%E8%A8%B3
58
+ puts '=========================================='
59
+ puts "URI #{i}: Compute the default raw URI to translate '翻訳' in English (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1ZUQ%E7%BF%BB%E8%A8%B3)."
46
60
  puts "irb(main):001:0> a_wwwjdic.raw_uri '翻訳'"
47
61
  puts a_wwwjdic.raw_uri '翻訳'
62
+ puts '------------------------------------------'
48
63
  puts
49
64
  i += 1
50
65
 
51
- # Computes the default JSON URI to translate '翻訳' in English
52
- # ({"翻訳":"http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1MUQ%E7%BF%BB%E8%A8%B3"})
53
- puts '------------------------------------------'
54
- puts "Basics: '#{i}'. Computes the default JSON URI to translate '翻訳' in English ({\"翻訳\":\"http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1MUQ%E7%BF%BB%E8%A8%B3\"})."
66
+ # rubocop:disable Style/AsciiComments
67
+ # Compute the default JSON URI to translate '翻訳' in English
68
+ # {"翻訳":"http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1MUQ%E7%BF%BB%E8%A8%B3"}
69
+ # rubocop:enable Style/AsciiComments
70
+ puts '=========================================='
71
+ # rubocop:disable Layout/LineLength
72
+ puts "URI #{i}: Compute the default JSON URI to translate '翻訳' in English ({\"翻訳\":\"http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1MUQ%E7%BF%BB%E8%A8%B3\"})."
73
+ # rubocop:enable Layout/LineLength
55
74
  puts "irb(main):001:0> a_wwwjdic.json_uri '翻訳'"
56
75
  puts a_wwwjdic.json_uri '翻訳'
76
+ puts '------------------------------------------'
57
77
  puts
58
78
  i += 1
59
79
 
60
- # Computes the default basic URI to translate '翻訳' in Italian
61
- # (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?OMUQ%E7%BF%BB%E8%A8%B3)
62
- puts '------------------------------------------'
63
- puts "Basics: '#{i}'. Computes the default basic URI to translate '翻訳' in Italian (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?OMUQ%E7%BF%BB%E8%A8%B3)."
80
+ # rubocop:disable Style/AsciiComments
81
+ # Compute the default basic URI to translate '翻訳' in Italian
82
+ # rubocop:enable Style/AsciiComments
83
+ # http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?OMUQ%E7%BF%BB%E8%A8%B3
84
+ puts '=========================================='
85
+ puts "URI #{i}: Compute the default basic URI to translate '翻訳' in Italian (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?OMUQ%E7%BF%BB%E8%A8%B3)."
64
86
  puts "irb(main):001:0> a_wwwjdic.uri '翻訳', dict: 'Japanese-Italian'"
65
87
  puts a_wwwjdic.uri '翻訳', dict: 'Japanese-Italian'
88
+ puts '------------------------------------------'
66
89
  puts
67
90
  i += 1
68
91
 
69
- # Computes the default JSON URI to translate '翻訳' in German
70
- # (http://www.csse.monash.edu.au/~jwb/cgi-bin/wwwjdic.cgi?GMUQ%E7%BF%BB%E8%A8%B3)
71
- puts '------------------------------------------'
72
- puts "Basics: '#{i}'. Computes the default basic URI to translate '翻訳' in German, through Monash university URI (http://www.csse.monash.edu.au/~jwb/cgi-bin/wwwjdic.cgi?GMUQ%E7%BF%BB%E8%A8%B3)."
92
+ # rubocop:disable Style/AsciiComments
93
+ # Compute the default basic URI to translate '翻訳' in German, through Monash university URI
94
+ # rubocop:enable Style/AsciiComments
95
+ # http://nihongo.monash.edu/cgi-bin/wwwjdic?GMUQ%E7%BF%BB%E8%A8%B3
96
+ puts '=========================================='
97
+ puts "URI #{i}: Compute the default basic URI to translate '翻訳' in German, through Monash university URI (http://nihongo.monash.edu/cgi-bin/wwwjdic?GMUQ%E7%BF%BB%E8%A8%B3)."
73
98
  puts "irb(main):001:0> a_wwwjdic.uri '翻訳', dict: 'Japanese-German (WaDoku)', server: :monash"
74
99
  puts a_wwwjdic.uri '翻訳', dict: 'Japanese-German (WaDoku)', server: :monash
75
- puts
76
- i += 1
77
-
78
- # Prints the current (default) WWWJDic configuration URL.
79
- # (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1M)
80
- puts '------------------------------------------'
81
- puts "Basics: '#{i}'. Prints the current (default) WWWJDic configuration URL (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1M)."
82
- puts 'irb(main):001:0> puts a_wwwjdic'
83
- puts a_wwwjdic
84
- puts
85
- i += 1
86
-
87
- # Change the server value to Monash one.
88
- # ()
89
- puts '------------------------------------------'
90
- puts "Basics: '#{i}'. Change the server value to Monash one."
91
- puts 'irb(main):001:0> a_wwwjdic.server = :monash'
92
- a_wwwjdic.server = :monash
93
- puts
94
- i += 1
95
-
96
- # Prints the (currently set) server
97
- # (http://www.csse.monash.edu.au/~jwb/cgi-bin/wwwjdic.cgi?)
98
- puts '------------------------------------------'
99
- puts "Basics: '#{i}'. Prints the (currently set) server (http://www.csse.monash.edu.au/~jwb/cgi-bin/wwwjdic.cgi?)."
100
- puts 'irb(main):001:0> puts a_wwwjdic.server'
101
- puts a_wwwjdic.server
102
- puts
103
- i += 1
104
-
105
- # Prints the WWWJDic configuration URL with currently set configuration.
106
- # (http://www.csse.monash.edu.au/~jwb/cgi-bin/wwwjdic.cgi?1M)
107
- puts '------------------------------------------'
108
- puts "Basics: '#{i}'. Prints the WWWJDic configuration URL with currently set configuration (http://www.csse.monash.edu.au/~jwb/cgi-bin/wwwjdic.cgi?1M)."
109
- puts 'irb(main):001:0> puts a_wwwjdic'
110
- puts a_wwwjdic
111
- puts
112
- i += 1
113
-
114
- # Resets the configuration to default values.
115
- # (http://www.csse.monash.edu.au/~jwb/cgi-bin/wwwjdic.cgi?1M)
116
- puts '------------------------------------------'
117
- puts "Basics: '#{i}'. Resets the configuration to default values."
118
- puts 'irb(main):001:0> a_wwwjdic.reset'
119
- a_wwwjdic.reset
120
- puts
121
- i += 1
122
-
123
- # Prints the current (default) WWWJDic configuration URL.
124
- # (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1M)
125
100
  puts '------------------------------------------'
126
- puts "Basics: '#{i}'. Prints the current (default) WWWJDic configuration URL (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1M)."
127
- puts 'irb(main):001:0> puts a_wwwjdic'
128
- puts a_wwwjdic
129
101
  puts
data/html/CHANGELOG.html CHANGED
@@ -4,22 +4,23 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>CHANGELOG - wwwjdic 13.0.0</title>
7
+ <title>CHANGELOG - 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 src="./js/jquery.js"></script>
15
- <script src="./js/darkfish.js"></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>
16
19
 
17
20
  <link href="./css/fonts.css" rel="stylesheet">
18
21
  <link href="./css/rdoc.css" rel="stylesheet">
19
22
 
20
23
 
21
-
22
-
23
24
  <body id="top" role="document" class="file">
24
25
  <nav role="navigation">
25
26
  <div id="project-navigation">
@@ -57,6 +58,10 @@
57
58
  <h3>Table of Contents</h3>
58
59
 
59
60
  <ul class="link-list" role="directory">
61
+ <li><a href="#label-Version+16.0.0">Version 16.0.0</a>
62
+ <li><a href="#label-Version+15.0.0">Version 15.0.0</a>
63
+ <li><a href="#label-Version+14.0.0">Version 14.0.0</a>
64
+ <li><a href="#label-Version+13.0.1">Version 13.0.1</a>
60
65
  <li><a href="#label-Version+13.0.0">Version 13.0.0</a>
61
66
  <li><a href="#label-Version+12.0.0">Version 12.0.0</a>
62
67
  <li><a href="#label-Version+11.0.0">Version 11.0.0</a>
@@ -102,29 +107,17 @@
102
107
 
103
108
 
104
109
  <div id="project-metadata">
105
- <div id="fileindex-section" class="nav-section">
110
+
111
+ <div id="fileindex-section" class="nav-section">
106
112
  <h3>Pages</h3>
107
113
 
108
114
  <ul class="link-list">
109
-
110
115
  <li><a href="./CHANGELOG.html">CHANGELOG</a>
111
-
112
116
  <li><a href="./COPYING_md.html">COPYING</a>
113
-
114
117
  <li><a href="./Gemfile.html">Gemfile</a>
115
-
116
118
  <li><a href="./README_md.html">README</a>
117
-
118
119
  <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
120
  <li><a href="./copyright_md.html">copyright</a>
125
-
126
- <li><a href="./wwwjdic_gemspec.html">wwwjdic.gemspec</a>
127
-
128
121
  </ul>
129
122
  </div>
130
123
 
@@ -133,6 +126,72 @@
133
126
 
134
127
  <main role="main" aria-label="Page CHANGELOG">
135
128
 
129
+ <h1 id="label-Version+16.0.0">Version 16.0.0<span><a href="#label-Version+16.0.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
130
+
131
+ <pre>* MAJOR update from Ruby &#39;~&gt; 2.7&#39; to Ruby &#39;~&gt; 3.0&#39;.
132
+ * MINOR update IntelliJ IDEA (RubyGem) project configuration.
133
+ * PATCH update gem dependencies.
134
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
135
+ allow user asking for specific searches. Search key currently fixed
136
+ to &#39;E&#39; (exact match) type search.
137
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
138
+ point 1 (Software using Semantic Versioning MUST declare a public
139
+ API. This API could be declared in the code itself or exist strictly
140
+ in documentation. However it is done, it should be precise and
141
+ comprehensive.)</pre>
142
+
143
+ <h1 id="label-Version+15.0.0">Version 15.0.0<span><a href="#label-Version+15.0.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
144
+
145
+ <pre>* MAJOR changed key search type default from &quot;exact&quot; to &quot;english&quot;.
146
+ * MAJOR changed Monash dictionary server reference URL.
147
+ * MINOR introduce compliance to REUSE tool from FSF Europe
148
+ * MINOR add dependency to Rubocop
149
+ * PATCH update copyright notices
150
+ * PATCH remove test data form I18N files.
151
+ * PATCH update gem dependencies.
152
+ * PATCH update IntelliJ IDEA (RubyGem) project configuration.
153
+ * PATCH update to Ruby 2.7.x new things
154
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
155
+ allow user asking for specific searches. Search key currently fixed
156
+ to &#39;E&#39; (exact match) type search.
157
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
158
+ point 1 (Software using Semantic Versioning MUST declare a public
159
+ API. This API could be declared in the code itself or exist strictly
160
+ in documentation. However it is done, it should be precise and
161
+ comprehensive.)</pre>
162
+
163
+ <h1 id="label-Version+14.0.0">Version 14.0.0<span><a href="#label-Version+14.0.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
164
+
165
+ <pre>* MAJOR update from Ruby &#39;~&gt; 2.6&#39; to Ruby &#39;~&gt; 2.7&#39;.
166
+ * MINOR update IntelliJ IDEA (RubyGem) project configuration.
167
+ * MINOR add simplecov code coverage.
168
+ * PATCH update gem dependencies.
169
+ * PATCH change all asserts to matchers
170
+ * PATCH update copyright notice
171
+ * PATCH Fix deprecated methods calls for Minitest version 6.
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+13.0.1">Version 13.0.1<span><a href="#label-Version+13.0.1">&para;</a> <a href="#top">&uarr;</a></span></h1>
183
+
184
+ <pre>* PATCH updating gem dependencies.
185
+ * IN PROGRESS: translation example.
186
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
187
+ allow user asking for specific searches. Search key currently fixed
188
+ to &#39;Q&#39; (exact match) type search.
189
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
190
+ point 1 (Software using Semantic Versioning MUST declare a public
191
+ API. This API could be declared in the code itself or exist strictly
192
+ in documentation. However it is done, it should be precise and
193
+ comprehensive.)</pre>
194
+
136
195
  <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
196
 
138
197
  <pre>* MAJOR moving from a_gem.required_ruby_version = &#39;~&gt; 2.5&#39; to
@@ -575,7 +634,7 @@
575
634
 
576
635
  <p>wwwjdic</p>
577
636
 
578
- <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
637
+ <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
579
638
 
580
639
  <p>This file is part of wwwjdic.</p>
581
640
 
@@ -591,7 +650,7 @@
591
650
 
592
651
  <footer id="validator-badges" role="contentinfo">
593
652
  <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.
653
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.0.
595
654
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
596
655
  </footer>
597
656
 
data/html/COPYING_md.html CHANGED
@@ -4,22 +4,23 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>COPYING - wwwjdic 13.0.0</title>
7
+ <title>COPYING - 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 src="./js/jquery.js"></script>
15
- <script src="./js/darkfish.js"></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>
16
19
 
17
20
  <link href="./css/fonts.css" rel="stylesheet">
18
21
  <link href="./css/rdoc.css" rel="stylesheet">
19
22
 
20
23
 
21
-
22
-
23
24
  <body id="top" role="document" class="file">
24
25
  <nav role="navigation">
25
26
  <div id="project-navigation">
@@ -84,29 +85,17 @@
84
85
 
85
86
 
86
87
  <div id="project-metadata">
87
- <div id="fileindex-section" class="nav-section">
88
+
89
+ <div id="fileindex-section" class="nav-section">
88
90
  <h3>Pages</h3>
89
91
 
90
92
  <ul class="link-list">
91
-
92
93
  <li><a href="./CHANGELOG.html">CHANGELOG</a>
93
-
94
94
  <li><a href="./COPYING_md.html">COPYING</a>
95
-
96
95
  <li><a href="./Gemfile.html">Gemfile</a>
97
-
98
96
  <li><a href="./README_md.html">README</a>
99
-
100
97
  <li><a href="./Rakefile.html">Rakefile</a>
101
-
102
- <li><a href="./acknowledgements_md.html">acknowledgements</a>
103
-
104
- <li><a href="./authors_md.html">authors</a>
105
-
106
98
  <li><a href="./copyright_md.html">copyright</a>
107
-
108
- <li><a href="./wwwjdic_gemspec.html">wwwjdic.gemspec</a>
109
-
110
99
  </ul>
111
100
  </div>
112
101
 
@@ -127,7 +116,7 @@
127
116
 
128
117
  <p>The GNU General Public License is a free, copyleft license for software and other kinds of works.</p>
129
118
 
130
- <p>The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program–to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its <a href="authors_md.html">authors</a>. You can apply it to your programs, too.</p>
119
+ <p>The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program–to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.</p>
131
120
 
132
121
  <p>When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.</p>
133
122
 
@@ -137,7 +126,7 @@
137
126
 
138
127
  <p>Developers that use the GNU GPL protect your rights with two steps: (1) assert <a href="copyright_md.html">copyright</a> on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.</p>
139
128
 
140
- <p>For the developers&#39; and <a href="authors_md.html">authors</a>&#39; protection, the GPL clearly explains that there is no warranty for this free software. For both users&#39; and <a href="authors_md.html">authors</a>&#39; sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to <a href="authors_md.html">authors</a> of previous versions.</p>
129
+ <p>For the developers&#39; and authors&#39; protection, the GPL clearly explains that there is no warranty for this free software. For both users&#39; and authors&#39; sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.</p>
141
130
 
142
131
  <p>Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users&#39; freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.</p>
143
132
 
@@ -255,11 +244,11 @@
255
244
  </li><li>
256
245
  <p>c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or</p>
257
246
  </li><li>
258
- <p>d) Limiting the use for publicity purposes of names of licensors or <a href="authors_md.html">authors</a> of the material; or</p>
247
+ <p>d) Limiting the use for publicity purposes of names of licensors or authors of the material; or</p>
259
248
  </li><li>
260
249
  <p>e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or</p>
261
250
  </li><li>
262
- <p>f) Requiring indemnification of licensors and <a href="authors_md.html">authors</a> of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and <a href="authors_md.html">authors</a>.</p>
251
+ <p>f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.</p>
263
252
  </li></ul>
264
253
 
265
254
  <p>All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.</p>
@@ -383,7 +372,7 @@
383
372
 
384
373
  <footer id="validator-badges" role="contentinfo">
385
374
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
386
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
375
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.0.
387
376
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
388
377
  </footer>
389
378
 
data/html/Gemfile.html CHANGED
@@ -4,22 +4,23 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>Gemfile - wwwjdic 13.0.0</title>
7
+ <title>Gemfile - 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 src="./js/jquery.js"></script>
15
- <script src="./js/darkfish.js"></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>
16
19
 
17
20
  <link href="./css/fonts.css" rel="stylesheet">
18
21
  <link href="./css/rdoc.css" rel="stylesheet">
19
22
 
20
23
 
21
-
22
-
23
24
  <body id="top" role="document" class="file">
24
25
  <nav role="navigation">
25
26
  <div id="project-navigation">
@@ -55,29 +56,17 @@
55
56
 
56
57
 
57
58
  <div id="project-metadata">
58
- <div id="fileindex-section" class="nav-section">
59
+
60
+ <div id="fileindex-section" class="nav-section">
59
61
  <h3>Pages</h3>
60
62
 
61
63
  <ul class="link-list">
62
-
63
64
  <li><a href="./CHANGELOG.html">CHANGELOG</a>
64
-
65
65
  <li><a href="./COPYING_md.html">COPYING</a>
66
-
67
66
  <li><a href="./Gemfile.html">Gemfile</a>
68
-
69
67
  <li><a href="./README_md.html">README</a>
70
-
71
68
  <li><a href="./Rakefile.html">Rakefile</a>
72
-
73
- <li><a href="./acknowledgements_md.html">acknowledgements</a>
74
-
75
- <li><a href="./authors_md.html">authors</a>
76
-
77
69
  <li><a href="./copyright_md.html">copyright</a>
78
-
79
- <li><a href="./wwwjdic_gemspec.html">wwwjdic.gemspec</a>
80
-
81
70
  </ul>
82
71
  </div>
83
72
 
@@ -86,7 +75,9 @@
86
75
 
87
76
  <main role="main" aria-label="Page Gemfile">
88
77
 
89
- <p># wwwjdic # Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani # # This file is part of wwwjdic. # # 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. # # 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. # # 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>
78
+ <p># frozen_string_literal: true</p>
79
+
80
+ <p># wwwjdic # rubocop:disable Style/AsciiComments # © 2014 Marco Bresciani # rubocop:enable Style/AsciiComments # # This file is part of wwwjdic. # # 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. # # 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. # # 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;. # # SPDX-FileCopyrightText: 2014 Marco Bresciani # # SPDX-&lt;span&gt;&lt;/span&gt;License-Identifier: FSFAP</p>
90
81
 
91
82
  <p>source &#39;<a href="https://rubygems.org">rubygems.org</a>&#39;</p>
92
83
 
@@ -98,7 +89,7 @@
98
89
 
99
90
  <footer id="validator-badges" role="contentinfo">
100
91
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
101
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
92
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.0.
102
93
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
103
94
  </footer>
104
95