wwwjdic 16.0.0 → 16.1.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 (90) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +10 -1
  3. data/Gemfile +2 -4
  4. data/README.md +5 -4
  5. data/Rakefile +2 -4
  6. data/copyright.md +5 -5
  7. data/examples/basics.rb +2 -4
  8. data/examples/translate.rb +2 -4
  9. data/examples/uri.rb +2 -6
  10. data/html/CHANGELOG.html +34 -24
  11. data/html/COPYING_md.html +22 -23
  12. data/html/Gemfile.html +23 -24
  13. data/html/Object.html +393 -394
  14. data/html/README_md.html +27 -28
  15. data/html/Rakefile.html +23 -24
  16. data/html/WWWJDic.html +42 -43
  17. data/html/WWWJDic/ParsableDuckType.html +35 -36
  18. data/html/WWWJDic/Parser.html +47 -48
  19. data/html/WWWJDic/Parsers.html +28 -29
  20. data/html/WWWJDic/Parsers/Dict.html +47 -48
  21. data/html/WWWJDic/Parsers/Display.html +42 -43
  22. data/html/WWWJDic/Parsers/Key.html +42 -43
  23. data/html/WWWJDic/Parsers/Search.html +38 -39
  24. data/html/WWWJDic/Parsers/Server.html +42 -43
  25. data/html/WWWJDic/Splitter.html +76 -77
  26. data/html/WWWJDic/Utils.html +29 -30
  27. data/html/WWWJDic/Utils/Downloader.html +40 -35
  28. data/html/WWWJDic/Utils/Downloader/Downloader.html +52 -45
  29. data/html/WWWJDic/Utils/Raisers.html +43 -44
  30. data/html/WWWJDic/WWWJDic.html +162 -163
  31. data/html/copyright_md.html +27 -28
  32. data/html/created.rid +33 -33
  33. data/html/css/rdoc.css +638 -619
  34. data/html/index.html +26 -27
  35. data/html/js/darkfish.js +84 -84
  36. data/html/js/navigation.js.gz +0 -0
  37. data/html/js/search.js +109 -110
  38. data/html/js/search_index.js +1 -1
  39. data/html/js/search_index.js.gz +0 -0
  40. data/html/js/searcher.js +228 -229
  41. data/html/js/searcher.js.gz +0 -0
  42. data/html/table_of_contents.html +10 -10
  43. data/lib/wwwjdic.rb +3 -5
  44. data/lib/wwwjdic/application.rb +4 -5
  45. data/lib/wwwjdic/constants.rb +11 -5
  46. data/lib/wwwjdic/locales/de.yml +2 -2
  47. data/lib/wwwjdic/locales/en.yml +2 -2
  48. data/lib/wwwjdic/locales/es.yml +2 -2
  49. data/lib/wwwjdic/locales/fr.yml +2 -2
  50. data/lib/wwwjdic/locales/hu.yml +2 -2
  51. data/lib/wwwjdic/locales/it.yml +2 -2
  52. data/lib/wwwjdic/locales/ja.yml +4 -4
  53. data/lib/wwwjdic/locales/nl.yml +2 -2
  54. data/lib/wwwjdic/locales/ru.yml +2 -2
  55. data/lib/wwwjdic/locales/sl.yml +2 -2
  56. data/lib/wwwjdic/locales/sv.yml +2 -2
  57. data/lib/wwwjdic/parser.rb +3 -5
  58. data/lib/wwwjdic/parsers/dict.rb +3 -5
  59. data/lib/wwwjdic/parsers/display.rb +3 -5
  60. data/lib/wwwjdic/parsers/key.rb +3 -5
  61. data/lib/wwwjdic/parsers/search.rb +3 -5
  62. data/lib/wwwjdic/parsers/server.rb +3 -5
  63. data/lib/wwwjdic/utils/downloader.rb +14 -8
  64. data/lib/wwwjdic/utils/raisers.rb +4 -6
  65. data/lib/wwwjdic/utils/splitter.rb +4 -5
  66. data/lib/wwwjdic/version.rb +10 -4
  67. data/test/test_helper.rb +2 -4
  68. data/test/test_wwwjdic.rb +2 -4
  69. data/test/wwwjdic/locales/de.yml +2 -2
  70. data/test/wwwjdic/locales/en.yml +2 -2
  71. data/test/wwwjdic/locales/es.yml +2 -2
  72. data/test/wwwjdic/locales/fr.yml +2 -2
  73. data/test/wwwjdic/locales/hu.yml +2 -2
  74. data/test/wwwjdic/locales/it.yml +2 -2
  75. data/test/wwwjdic/locales/ja.yml +4 -4
  76. data/test/wwwjdic/locales/nl.yml +2 -2
  77. data/test/wwwjdic/locales/ru.yml +2 -2
  78. data/test/wwwjdic/locales/sl.yml +2 -2
  79. data/test/wwwjdic/locales/sv.yml +2 -2
  80. data/test/wwwjdic/locales/test_locales.rb +2 -4
  81. data/test/wwwjdic/parsers/test_dict.rb +2 -4
  82. data/test/wwwjdic/parsers/test_display.rb +2 -4
  83. data/test/wwwjdic/parsers/test_key.rb +2 -4
  84. data/test/wwwjdic/parsers/test_server.rb +2 -4
  85. data/test/wwwjdic/test_application.rb +3 -5
  86. data/test/wwwjdic/test_parsable_duck_type.rb +4 -5
  87. data/test/wwwjdic/utils/test_downloader.rb +2 -4
  88. data/test/wwwjdic/utils/test_raisers.rb +2 -4
  89. data/wwwjdic.gemspec +2 -4
  90. metadata +11 -11
Binary file
@@ -4,26 +4,26 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>Table of Contents - wwwjdic 16.0.0</title>
7
+ <title>Table of Contents - wwwjdic 16.1.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/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>
14
+ <script defer src="./js/navigation.js"></script>
15
+ <script defer src="./js/search.js"></script>
16
+ <script defer src="./js/search_index.js"></script>
17
+ <script defer src="./js/searcher.js"></script>
18
+ <script defer src="./js/darkfish.js"></script>
19
19
 
20
20
  <link href="./css/fonts.css" rel="stylesheet">
21
21
  <link href="./css/rdoc.css" rel="stylesheet">
22
22
 
23
23
 
24
- <body id="top" class="table-of-contents">
24
+ <body class="table-of-contents" id="top">
25
25
  <main role="main">
26
- <h1 class="class">Table of Contents - wwwjdic 16.0.0</h1>
26
+ <h1 class="class">Table of Contents - wwwjdic 16.1.0</h1>
27
27
 
28
28
  <h2 id="pages">Pages</h2>
29
29
  <ul>
@@ -31,6 +31,7 @@
31
31
  <a href="CHANGELOG.html">CHANGELOG</a>
32
32
 
33
33
  <ul>
34
+ <li><a href="CHANGELOG.html#label-Version+16.1.0">Version 16.1.0</a>
34
35
  <li><a href="CHANGELOG.html#label-Version+16.0.0">Version 16.0.0</a>
35
36
  <li><a href="CHANGELOG.html#label-Version+15.0.0">Version 15.0.0</a>
36
37
  <li><a href="CHANGELOG.html#label-Version+14.0.0">Version 14.0.0</a>
@@ -498,7 +499,6 @@
498
499
 
499
500
  <footer id="validator-badges" role="contentinfo">
500
501
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
501
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.0.
502
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.2.
502
503
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
503
504
  </footer>
504
-
data/lib/wwwjdic.rb CHANGED
@@ -2,9 +2,7 @@
2
2
 
3
3
  #--
4
4
  # wwwjdic
5
- # rubocop:disable Style/AsciiComments
6
- # © 2014 Marco Bresciani
7
- # rubocop:enable Style/AsciiComments
5
+ # © 2014-2021 Marco Bresciani
8
6
  #
9
7
  # This file is part of wwwjdic.
10
8
  #
@@ -21,7 +19,7 @@
21
19
  # You should have received a copy of the GNU General Public License
22
20
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
23
21
  #
24
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
22
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
25
23
  #
26
24
  # SPDX-License-Identifier: GPL-3.0-or-later
27
25
  #++
@@ -35,7 +33,7 @@ require_relative 'wwwjdic/parsers/search'
35
33
  require_relative 'wwwjdic/parsers/server'
36
34
 
37
35
  # Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
38
- # Copyright:: (C) 2014 Marco Bresciani
36
+ # Copyright:: © 2014-2021 Marco Bresciani
39
37
  # License:: GNU General Public License version 3
40
38
  module WWWJDic
41
39
  # Creates a new WWWJDic object (from the verb 'to Breen'... :) ).
@@ -2,9 +2,7 @@
2
2
 
3
3
  #--
4
4
  # wwwjdic
5
- # rubocop:disable Style/AsciiComments
6
- # © 2014 Marco Bresciani
7
- # rubocop:enable Style/AsciiComments
5
+ # © 2014-2021 Marco Bresciani
8
6
  #
9
7
  # This file is part of wwwjdic.
10
8
  #
@@ -21,7 +19,7 @@
21
19
  # You should have received a copy of the GNU General Public License
22
20
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
23
21
  #
24
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
22
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
25
23
  #
26
24
  # SPDX-License-Identifier: GPL-3.0-or-later
27
25
  #++
@@ -36,8 +34,9 @@ require_relative 'utils/splitter'
36
34
  module WWWJDic
37
35
  # This class is a simple API to interact with WWWJDic Backboor
38
36
  # Entry/API.
37
+ #
39
38
  # Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
40
- # Copyright:: (C) 2014 Marco Bresciani
39
+ # Copyright:: © 2014-2021 Marco Bresciani
41
40
  # License:: GNU General Public License version 3
42
41
  class WWWJDic
43
42
  # Creates a +WWWJDic+ object. This constructor should be used
@@ -2,9 +2,7 @@
2
2
 
3
3
  #--
4
4
  # wwwjdic
5
- # rubocop:disable Style/AsciiComments
6
- # © 2014 Marco Bresciani
7
- # rubocop:enable Style/AsciiComments
5
+ # © 2014-2021 Marco Bresciani
8
6
  #
9
7
  # This file is part of wwwjdic.
10
8
  #
@@ -20,9 +18,17 @@
20
18
  #
21
19
  # You should have received a copy of the GNU General Public License
22
20
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
21
+ #
22
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
23
+ #
24
+ # SPDX-License-Identifier: GPL-3.0-or-later
23
25
  #++
24
26
 
25
27
  module WWWJDic
28
+ # Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
29
+ # Copyright:: © 2014-2021 Marco Bresciani
30
+ # License:: GNU General Public License version 3
31
+
26
32
  # Allowed parameters for configuration
27
33
  ALLOWED_PARAMS = %i[dict display key server].freeze
28
34
 
@@ -65,10 +71,10 @@ module WWWJDic
65
71
  'Expanded Text-glossing'].freeze
66
72
 
67
73
  # Mapping between dictionaries names with codes
68
- DICTS_BY_CODES = Hash[DICTIONARY_CODES.zip(DICTIONARY_NAMES)]
74
+ DICTS_BY_CODES = DICTIONARY_CODES.zip(DICTIONARY_NAMES).to_h
69
75
 
70
76
  # Mapping between dictionaries codes with names
71
- DICTS_BY_NAMES = Hash[DICTIONARY_NAMES.zip(DICTIONARY_CODES)]
77
+ DICTS_BY_NAMES = DICTIONARY_NAMES.zip(DICTIONARY_CODES).to_h
72
78
 
73
79
  # Display modes
74
80
  DISPLAY = { regular: 'M', raw: 'Z' }.freeze
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # wwwjdic
3
3
  # rubocop:disable Style/AsciiComments
4
- # © 2014 Marco Bresciani
4
+ # © 2014-2021 Marco Bresciani
5
5
  # rubocop:enable Style/AsciiComments
6
6
  #
7
7
  # This file is part of wwwjdic.
@@ -19,7 +19,7 @@
19
19
  # You should have received a copy of the GNU General Public License
20
20
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
21
21
  #
22
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
22
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
23
23
  #
24
24
  # SPDX-License-Identifier: GPL-3.0-or-later
25
25
  #++
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # wwwjdic
3
3
  # rubocop:disable Style/AsciiComments
4
- # © 2014 Marco Bresciani
4
+ # © 2014-2021 Marco Bresciani
5
5
  # rubocop:enable Style/AsciiComments
6
6
  #
7
7
  # This file is part of wwwjdic.
@@ -19,7 +19,7 @@
19
19
  # You should have received a copy of the GNU General Public License
20
20
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
21
21
  #
22
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
22
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
23
23
  #
24
24
  # SPDX-License-Identifier: GPL-3.0-or-later
25
25
  #++
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # wwwjdic
3
3
  # rubocop:disable Style/AsciiComments
4
- # © 2014 Marco Bresciani
4
+ # © 2014-2021 Marco Bresciani
5
5
  # rubocop:enable Style/AsciiComments
6
6
  #
7
7
  # This file is part of wwwjdic.
@@ -19,7 +19,7 @@
19
19
  # You should have received a copy of the GNU General Public License
20
20
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
21
21
  #
22
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
22
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
23
23
  #
24
24
  # SPDX-License-Identifier: GPL-3.0-or-later
25
25
  #++
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # wwwjdic
3
3
  # rubocop:disable Style/AsciiComments
4
- # © 2014 Marco Bresciani
4
+ # © 2014-2021 Marco Bresciani
5
5
  # rubocop:enable Style/AsciiComments
6
6
  #
7
7
  # This file is part of wwwjdic.
@@ -19,7 +19,7 @@
19
19
  # You should have received a copy of the GNU General Public License
20
20
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
21
21
  #
22
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
22
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
23
23
  #
24
24
  # SPDX-License-Identifier: GPL-3.0-or-later
25
25
  #++
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # wwwjdic
3
3
  # rubocop:disable Style/AsciiComments
4
- # © 2014 Marco Bresciani
4
+ # © 2014-2021 Marco Bresciani
5
5
  # rubocop:enable Style/AsciiComments
6
6
  #
7
7
  # This file is part of wwwjdic.
@@ -19,7 +19,7 @@
19
19
  # You should have received a copy of the GNU General Public License
20
20
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
21
21
  #
22
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
22
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
23
23
  #
24
24
  # SPDX-License-Identifier: GPL-3.0-or-later
25
25
  #++
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # wwwjdic
3
3
  # rubocop:disable Style/AsciiComments
4
- # © 2014 Marco Bresciani
4
+ # © 2014-2021 Marco Bresciani
5
5
  # rubocop:enable Style/AsciiComments
6
6
  #
7
7
  # This file is part of wwwjdic.
@@ -19,7 +19,7 @@
19
19
  # You should have received a copy of the GNU General Public License
20
20
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
21
21
  #
22
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
22
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
23
23
  #
24
24
  # SPDX-License-Identifier: GPL-3.0-or-later
25
25
  #++
@@ -1,8 +1,8 @@
1
1
  #--
2
2
  # wwwjdic
3
- # © 2013 新部裕
4
3
  # rubocop:disable Style/AsciiComments
5
- # © 2014 Marco Bresciani
4
+ # © 2013 新部裕
5
+ # © 2014-2021 Marco Bresciani
6
6
  # rubocop:enable Style/AsciiComments
7
7
  #
8
8
  # This file is part of wwwjdic.
@@ -20,8 +20,8 @@
20
20
  # You should have received a copy of the GNU General Public License
21
21
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
22
22
  #
23
- # SPDX-FileCopyrightText: 2013 新部裕
24
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
23
+ # SPDX-FileCopyrightText: 2013 新部裕
24
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
25
25
  #
26
26
  # SPDX-License-Identifier: GPL-3.0-or-later
27
27
  #++
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # wwwjdic
3
3
  # rubocop:disable Style/AsciiComments
4
- # © 2014 Marco Bresciani
4
+ # © 2014-2021 Marco Bresciani
5
5
  # rubocop:enable Style/AsciiComments
6
6
  #
7
7
  # This file is part of wwwjdic.
@@ -19,7 +19,7 @@
19
19
  # You should have received a copy of the GNU General Public License
20
20
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
21
21
  #
22
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
22
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
23
23
  #
24
24
  # SPDX-License-Identifier: GPL-3.0-or-later
25
25
  #++
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # wwwjdic
3
3
  # rubocop:disable Style/AsciiComments
4
- # © 2014 Marco Bresciani
4
+ # © 2014-2021 Marco Bresciani
5
5
  # rubocop:enable Style/AsciiComments
6
6
  #
7
7
  # This file is part of wwwjdic.
@@ -19,7 +19,7 @@
19
19
  # You should have received a copy of the GNU General Public License
20
20
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
21
21
  #
22
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
22
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
23
23
  #
24
24
  # SPDX-License-Identifier: GPL-3.0-or-later
25
25
  #++
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # wwwjdic
3
3
  # rubocop:disable Style/AsciiComments
4
- # © 2014 Marco Bresciani
4
+ # © 2014-2021 Marco Bresciani
5
5
  # rubocop:enable Style/AsciiComments
6
6
  #
7
7
  # This file is part of wwwjdic.
@@ -19,7 +19,7 @@
19
19
  # You should have received a copy of the GNU General Public License
20
20
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
21
21
  #
22
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
22
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
23
23
  #
24
24
  # SPDX-License-Identifier: GPL-3.0-or-later
25
25
  #++
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # wwwjdic
3
3
  # rubocop:disable Style/AsciiComments
4
- # © 2014 Marco Bresciani
4
+ # © 2014-2021 Marco Bresciani
5
5
  # rubocop:enable Style/AsciiComments
6
6
  #
7
7
  # This file is part of wwwjdic.
@@ -19,7 +19,7 @@
19
19
  # You should have received a copy of the GNU General Public License
20
20
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
21
21
  #
22
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
22
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
23
23
  #
24
24
  # SPDX-License-Identifier: GPL-3.0-or-later
25
25
  #++
@@ -2,9 +2,7 @@
2
2
 
3
3
  #--
4
4
  # wwwjdic
5
- # rubocop:disable Style/AsciiComments
6
- # © 2014 Marco Bresciani
7
- # rubocop:enable Style/AsciiComments
5
+ # © 2014-2021 Marco Bresciani
8
6
  #
9
7
  # This file is part of wwwjdic.
10
8
  #
@@ -21,7 +19,7 @@
21
19
  # You should have received a copy of the GNU General Public License
22
20
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
23
21
  #
24
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
22
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
25
23
  #
26
24
  # SPDX-License-Identifier: GPL-3.0-or-later
27
25
  #++
@@ -33,7 +31,7 @@ module WWWJDic
33
31
  # parameters for wwwjdic.
34
32
  #
35
33
  # Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
36
- # Copyright:: (C) 2014 Marco Bresciani
34
+ # Copyright:: © 2014-2021 Marco Bresciani
37
35
  # License:: GNU General Public License version 3
38
36
  class Parser
39
37
  attr_reader :parsers
@@ -2,9 +2,7 @@
2
2
 
3
3
  #--
4
4
  # wwwjdic
5
- # rubocop:disable Style/AsciiComments
6
- # © 2014 Marco Bresciani
7
- # rubocop:enable Style/AsciiComments
5
+ # © 2014-2021 Marco Bresciani
8
6
  #
9
7
  # This file is part of wwwjdic.
10
8
  #
@@ -21,7 +19,7 @@
21
19
  # You should have received a copy of the GNU General Public License
22
20
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
23
21
  #
24
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
22
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
25
23
  #
26
24
  # SPDX-License-Identifier: GPL-3.0-or-later
27
25
  #++
@@ -39,7 +37,7 @@ module WWWJDic
39
37
  # source of one of the pages to get the full list of codes.)
40
38
  #
41
39
  # Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
42
- # Copyright:: (C) 2014 Marco Bresciani
40
+ # Copyright:: © 2014-2021 Marco Bresciani
43
41
  # License:: GNU General Public License version 3
44
42
  class Dict
45
43
  include Utils::Raisers
@@ -2,9 +2,7 @@
2
2
 
3
3
  #--
4
4
  # wwwjdic
5
- # rubocop:disable Style/AsciiComments
6
- # © 2014 Marco Bresciani
7
- # rubocop:enable Style/AsciiComments
5
+ # © 2014-2021 Marco Bresciani
8
6
  #
9
7
  # This file is part of wwwjdic.
10
8
  #
@@ -21,7 +19,7 @@
21
19
  # You should have received a copy of the GNU General Public License
22
20
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
23
21
  #
24
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
22
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
25
23
  #
26
24
  # SPDX-License-Identifier: GPL-3.0-or-later
27
25
  #++
@@ -38,7 +36,7 @@ module WWWJDic
38
36
  # dictionary display)
39
37
  #
40
38
  # Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
41
- # Copyright:: (C) 2014 Marco Bresciani
39
+ # Copyright:: © 2014-2021 Marco Bresciani
42
40
  # License:: GNU General Public License version 3
43
41
  class Display
44
42
  include Utils::Raisers