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
@@ -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
  #++
@@ -64,7 +62,7 @@ module WWWJDic
64
62
  # displayed.
65
63
  #
66
64
  # Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
67
- # Copyright:: (C) 2014 Marco Bresciani
65
+ # Copyright:: © 2014-2021 Marco Bresciani
68
66
  # License:: GNU General Public License version 3
69
67
  class Key
70
68
  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
  #++
@@ -55,7 +53,7 @@ module WWWJDic
55
53
  # * for example sentence lookups using a regular expression, use T.
56
54
  #
57
55
  # Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
58
- # Copyright:: (C) 2014 Marco Bresciani
56
+ # Copyright:: © 2014-2021 Marco Bresciani
59
57
  # License:: GNU General Public License version 3
60
58
  class Search
61
59
  # The parsable duck type interface to every parser usage.
@@ -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 @@ module WWWJDic
35
33
  # with +true+ for regular.
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
  class Server
41
39
  include Utils::Raisers
@@ -3,7 +3,7 @@
3
3
  #--
4
4
  # wwwjdic
5
5
  # rubocop:disable Style/AsciiComments
6
- # © 2014 Marco Bresciani
6
+ # © 2014-2021 Marco Bresciani
7
7
  # rubocop:enable Style/AsciiComments
8
8
  #
9
9
  # This file is part of wwwjdic.
@@ -21,19 +21,20 @@
21
21
  # You should have received a copy of the GNU General Public License
22
22
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
23
23
  #
24
- # SPDX-FileCopyrightText: 2012 Jon Maken
24
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
25
25
  #
26
- # SPDX-License-Identifier: BSD-3-Clause
26
+ # SPDX-License-Identifier: GPL-3.0-or-later
27
27
  #++
28
28
 
29
29
  module WWWJDic
30
30
  module Utils
31
- # This module is a simple wrapper container for Peter R. Marreck's
32
- # gist.
31
+ # This module is a simple wrapper container for Jon Maken gist.
33
32
  #
34
- # Author:: {Jon Maken}[mailto:jon.forums@gmail.com]
35
- # License:: 3-clause BSD
36
- # Revision:: 2012-03-25 23:01:19 -0600
33
+ # Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
34
+ # rubocop:disable Style/AsciiComments
35
+ # Copyright:: © 2014-2021 Marco Bresciani
36
+ # rubocop:enable Style/AsciiComments
37
+ # License:: GNU General Public License version 3
37
38
  module Downloader
38
39
  require 'net/http'
39
40
  require 'net/ftp'
@@ -41,6 +42,11 @@ module WWWJDic
41
42
  require 'fileutils'
42
43
  require 'tempfile'
43
44
 
45
+ # rubocop:disable Style/AsciiComments
46
+ # Copyright:: © 2012 Jon Maken
47
+ # rubocop:enable Style/AsciiComments
48
+ # see https://gist.github.com/jonforums/2202048
49
+ #
44
50
  # An HTTP/HTTPS/FTP file downloader library/CLI based upon
45
51
  # MiniPortile's HTTP implementation.
46
52
  #
@@ -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
  #++
@@ -34,14 +32,14 @@ module WWWJDic
34
32
  # methods...
35
33
  #
36
34
  # Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
37
- # Copyright:: (C) 2014 Marco Bresciani
35
+ # Copyright:: © 2014-2021 Marco Bresciani
38
36
  # License:: GNU General Public License version 3
39
37
  module Utils
40
38
  # This module contains some utility method to raise errors according
41
39
  # to (possibly) common conditions.
42
40
  #
43
41
  # Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
44
- # Copyright:: (C) 2014 Marco Bresciani
42
+ # Copyright:: © 2014-2021 Marco Bresciani
45
43
  # License:: GNU General Public License version 3
46
44
  module Raisers
47
45
  # Raises an +ArgumentError+ according to parameters, unless the
@@ -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
  #++
@@ -34,8 +32,9 @@ require_relative '../constants'
34
32
  module WWWJDic
35
33
  # This class is a simple API to interact with WWWJDic Backboor
36
34
  # Entry/API.
35
+ #
37
36
  # Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
38
- # Copyright:: (C) 2014 Marco Bresciani
37
+ # Copyright:: © 2014-2021 Marco Bresciani
39
38
  # License:: GNU General Public License version 3
40
39
  class Splitter
41
40
  # Creates a +Splitter+ object.
@@ -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
  # Current version number for WWWJDic gem.
27
- VERSION = '16.0.0'
33
+ VERSION = '16.1.0'
28
34
  end
data/test/test_helper.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
  #++
data/test/test_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
  #++
@@ -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
  #++