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
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4d84ff5bb501abaa948b8332878634f294cdd75edc235119aa16222ed16b0c69
4
- data.tar.gz: e640c8693b708a7722049b2a1278b871e26cee18a85dd079a38d3567f16a89b8
3
+ metadata.gz: bb2e2cd3df5eea6d22b22252319b67ff022dadc110bc1e9f775dbdd9dff82b2b
4
+ data.tar.gz: b9269c65ef7d397c4c31eb3fa4d5e762c8147fe14d50b68ae02204d8559f61ae
5
5
  SHA512:
6
- metadata.gz: d907e73f5b066a3d5dc0f5c7246c096571027d5f27cc2d1020a7f75b343ac7b2315eca4ee88d0a4e55cb9487a0939ffe54d2f099caffdb5c512a6a537317951b
7
- data.tar.gz: ba5aa97fa7ccabd08cb1a21dc273001c91c1b74da3dc231ff97be04db5b96d5813ee1a45b16717a9a48d24fc8b84a063ab327358701c07ca3f9ee805c80e8e1f
6
+ metadata.gz: 44ebe05d1250ebef33b777358efc23bd78eb72eb62ad53c5e167c5f2478c285eee048a69865b0d5f120757e079cc95c7baeb163787a251a621bd84758f411105
7
+ data.tar.gz: 271996b80d2650cd7f52d3e7384b4ef2905430eb2f81eaeb49e783fd2dc1cce637634578291f4d42a6b24b4e3e79a321a11dd45daac4f920a05460242df10a59
data/CHANGELOG CHANGED
@@ -1,3 +1,12 @@
1
+ = Version 16.1.0
2
+ * PATCH update gem dependencies.
3
+ * PATCH fix somw Rubocop offenses
4
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
5
+ point 1 (Software using Semantic Versioning MUST declare a public
6
+ API. This API could be declared in the code itself or exist strictly
7
+ in documentation. However it is done, it should be precise and
8
+ comprehensive.)
9
+
1
10
  = Version 16.0.0
2
11
  * MAJOR update from Ruby '~> 2.7' to Ruby '~> 3.0'.
3
12
  * MINOR update IntelliJ IDEA (RubyGem) project configuration.
@@ -463,7 +472,7 @@
463
472
 
464
473
  wwwjdic
465
474
 
466
- Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
475
+ © 2014-2021 Marco Bresciani
467
476
 
468
477
  This file is part of wwwjdic.
469
478
 
data/Gemfile CHANGED
@@ -1,9 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # wwwjdic
4
- # rubocop:disable Style/AsciiComments
5
- # © 2014 Marco Bresciani
6
- # rubocop:enable Style/AsciiComments
4
+ # © 2014-2021 Marco Bresciani
7
5
  #
8
6
  # This file is part of wwwjdic.
9
7
  #
@@ -20,7 +18,7 @@
20
18
  # You should have received a copy of the GNU General Public License
21
19
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
22
20
  #
23
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
21
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
24
22
  #
25
23
  # SPDX-<span></span>License-Identifier: FSFAP
26
24
 
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  <!--
2
2
  wwwjdic
3
3
 
4
- (C) 2014 Marco Bresciani
4
+ © 2014-2021 Marco Bresciani
5
5
 
6
6
  This file is part of wwwjdic.
7
7
 
@@ -18,7 +18,7 @@ more details.
18
18
  You should have received a copy of the GNU General Public License along
19
19
  with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
20
20
 
21
- SPDX-FileCopyrightText: 2014 Marco Bresciani
21
+ SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
22
22
 
23
23
  SPDX-License-Identifier: GFDL-1.3-or-later
24
24
  -->
@@ -78,7 +78,8 @@ WWWJDic is an online Japanese translation server made by Jim Breen and
78
78
  available at http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic?1C.
79
79
 
80
80
  Jim Breen's Japanese Page lists this gem:
81
- http://nihongo.monash.edu/japanese.html#links_software
81
+ http://nihongo.monash.edu/japanese.html#links_software and has allowed
82
+ the use of the same name.
82
83
 
83
84
  GNU GPLv3 license; source code available through anonymous checkout:
84
85
  `hg clone http://hg.savannah.nongnu.org/hgweb/wwwjdic/` or write me, and
@@ -98,7 +99,7 @@ prompt: `gem install wwwjdic`.
98
99
 
99
100
  Because WWWJDic is pure Ruby, it should run pretty much anywhere,
100
101
  including Rubinius, JRuby, MacRuby, etc.
101
- Officially the support is for \>= 2.7 YARV/KRI.
102
+ Officially the support is for \>= 3.0 MJIT.
102
103
 
103
104
  #### Savannah
104
105
  * Project page: <https://savannah.nongnu.org/projects/wwwjdic/>
data/Rakefile CHANGED
@@ -1,9 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # wwwjdic
4
- # rubocop:disable Style/AsciiComments
5
- # © 2014 Marco Bresciani
6
- # rubocop:enable Style/AsciiComments
4
+ # © 2014-2021 Marco Bresciani
7
5
  #
8
6
  # This file is part of wwwjdic.
9
7
  #
@@ -20,7 +18,7 @@
20
18
  # You should have received a copy of the GNU General Public License
21
19
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
22
20
  #
23
- # SPDX-FileCopyrightText: 2014 Marco Bresciani
21
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
24
22
  #
25
23
  # SPDX-<span></span>License-Identifier: GPL-3.0-or-later
26
24
  #++
data/copyright.md CHANGED
@@ -1,7 +1,7 @@
1
1
  <!--
2
2
  wwwjdic
3
3
 
4
- © 2014 Marco Bresciani
4
+ © 2014-2021 Marco Bresciani
5
5
 
6
6
  This file is part of wwwjdic.
7
7
 
@@ -18,17 +18,17 @@ more details.
18
18
  You should have received a copy of the GNU General Public License along
19
19
  with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
20
20
 
21
- SPDX-FileCopyrightText: 2014 Marco Bresciani
21
+ SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
22
22
 
23
23
  SPDX-License-Identifier: FSFAP
24
24
  -->
25
25
 
26
26
  # Copyright Notes
27
- 2020-11-10 update.
27
+ 2021-08-06 update.
28
28
 
29
29
  wwwjdic
30
30
 
31
- © 2014 Marco Bresciani
31
+ © 2014-2021 Marco Bresciani
32
32
 
33
33
  This file is part of wwwjdic.
34
34
 
@@ -347,7 +347,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
347
347
 
348
348
  wwwjdic
349
349
 
350
- © 2014 Marco Bresciani
350
+ © 2014-2021 Marco Bresciani
351
351
 
352
352
  This file is part of wwwjdic.
353
353
 
data/examples/basics.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
  #++
@@ -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/examples/uri.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
  #++
@@ -68,9 +66,7 @@ i += 1
68
66
  # {"翻訳":"http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1MUQ%E7%BF%BB%E8%A8%B3"}
69
67
  # rubocop:enable Style/AsciiComments
70
68
  puts '=========================================='
71
- # rubocop:disable Layout/LineLength
72
69
  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
74
70
  puts "irb(main):001:0> a_wwwjdic.json_uri '翻訳'"
75
71
  puts a_wwwjdic.json_uri '翻訳'
76
72
  puts '------------------------------------------'
data/html/CHANGELOG.html CHANGED
@@ -4,27 +4,27 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>CHANGELOG - wwwjdic 16.0.0</title>
7
+ <title>CHANGELOG - 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" role="document" class="file">
24
+ <body class="file" id="top" role="document">
25
25
  <nav role="navigation">
26
26
  <div id="project-navigation">
27
- <div id="home-section" role="region" title="Quick navigation" class="nav-section">
27
+ <div class="nav-section" id="home-section" role="region" title="Quick navigation">
28
28
  <h2>
29
29
  <a href="./index.html" rel="home">Home</a>
30
30
  </h2>
@@ -36,28 +36,29 @@
36
36
  </div>
37
37
  </div>
38
38
 
39
- <div id="search-section" role="search" class="project-section initially-hidden">
40
- <form action="#" method="get" accept-charset="utf-8">
39
+ <div class="project-section initially-hidden" id="search-section" role="search">
40
+ <form accept-charset="utf-8" action="#" method="get">
41
41
  <div id="search-field-wrapper">
42
- <input id="search-field" role="combobox" aria-label="Search"
43
- aria-autocomplete="list" aria-controls="search-results"
44
- type="text" name="search" placeholder="Search" spellcheck="false"
45
- title="Type to search, Up and Down to navigate, Enter to load">
42
+ <input aria-autocomplete="list" aria-controls="search-results" aria-label="Search"
43
+ id="search-field" name="search"
44
+ placeholder="Search" role="combobox" spellcheck="false" title="Type to search, Up and Down to navigate, Enter to load"
45
+ type="text">
46
46
  </div>
47
47
 
48
- <ul id="search-results" aria-label="Search Results"
49
- aria-busy="false" aria-expanded="false"
50
- aria-atomic="false" class="initially-hidden"></ul>
48
+ <ul aria-atomic="false" aria-busy="false"
49
+ aria-expanded="false" aria-label="Search Results"
50
+ class="initially-hidden" id="search-results"></ul>
51
51
  </form>
52
52
  </div>
53
53
 
54
54
  </div>
55
55
 
56
-
56
+
57
57
  <div class="nav-section">
58
58
  <h3>Table of Contents</h3>
59
59
 
60
60
  <ul class="link-list" role="directory">
61
+ <li><a href="#label-Version+16.1.0">Version 16.1.0</a>
61
62
  <li><a href="#label-Version+16.0.0">Version 16.0.0</a>
62
63
  <li><a href="#label-Version+15.0.0">Version 15.0.0</a>
63
64
  <li><a href="#label-Version+14.0.0">Version 14.0.0</a>
@@ -107,8 +108,8 @@
107
108
 
108
109
 
109
110
  <div id="project-metadata">
110
-
111
- <div id="fileindex-section" class="nav-section">
111
+
112
+ <div class="nav-section" id="fileindex-section">
112
113
  <h3>Pages</h3>
113
114
 
114
115
  <ul class="link-list">
@@ -124,7 +125,17 @@
124
125
  </div>
125
126
  </nav>
126
127
 
127
- <main role="main" aria-label="Page CHANGELOG">
128
+ <main aria-label="Page CHANGELOG" role="main">
129
+
130
+ <h1 id="label-Version+16.1.0">Version 16.1.0<span><a href="#label-Version+16.1.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
131
+
132
+ <pre>* PATCH update gem dependencies.
133
+ * PATCH fix somw Rubocop offenses
134
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
135
+ point 1 (Software using Semantic Versioning MUST declare a public
136
+ API. This API could be declared in the code itself or exist strictly
137
+ in documentation. However it is done, it should be precise and
138
+ comprehensive.)</pre>
128
139
 
129
140
  <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
141
 
@@ -634,7 +645,7 @@
634
645
 
635
646
  <p>wwwjdic</p>
636
647
 
637
- <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
648
+ <p 2014-2021 Marco Bresciani</p>
638
649
 
639
650
  <p>This file is part of wwwjdic.</p>
640
651
 
@@ -650,7 +661,6 @@
650
661
 
651
662
  <footer id="validator-badges" role="contentinfo">
652
663
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
653
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.0.
664
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.2.
654
665
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
655
666
  </footer>
656
-
data/html/COPYING_md.html CHANGED
@@ -4,27 +4,27 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>COPYING - wwwjdic 16.0.0</title>
7
+ <title>COPYING - 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" role="document" class="file">
24
+ <body class="file" id="top" role="document">
25
25
  <nav role="navigation">
26
26
  <div id="project-navigation">
27
- <div id="home-section" role="region" title="Quick navigation" class="nav-section">
27
+ <div class="nav-section" id="home-section" role="region" title="Quick navigation">
28
28
  <h2>
29
29
  <a href="./index.html" rel="home">Home</a>
30
30
  </h2>
@@ -36,24 +36,24 @@
36
36
  </div>
37
37
  </div>
38
38
 
39
- <div id="search-section" role="search" class="project-section initially-hidden">
40
- <form action="#" method="get" accept-charset="utf-8">
39
+ <div class="project-section initially-hidden" id="search-section" role="search">
40
+ <form accept-charset="utf-8" action="#" method="get">
41
41
  <div id="search-field-wrapper">
42
- <input id="search-field" role="combobox" aria-label="Search"
43
- aria-autocomplete="list" aria-controls="search-results"
44
- type="text" name="search" placeholder="Search" spellcheck="false"
45
- title="Type to search, Up and Down to navigate, Enter to load">
42
+ <input aria-autocomplete="list" aria-controls="search-results" aria-label="Search"
43
+ id="search-field" name="search"
44
+ placeholder="Search" role="combobox" spellcheck="false" title="Type to search, Up and Down to navigate, Enter to load"
45
+ type="text">
46
46
  </div>
47
47
 
48
- <ul id="search-results" aria-label="Search Results"
49
- aria-busy="false" aria-expanded="false"
50
- aria-atomic="false" class="initially-hidden"></ul>
48
+ <ul aria-atomic="false" aria-busy="false"
49
+ aria-expanded="false" aria-label="Search Results"
50
+ class="initially-hidden" id="search-results"></ul>
51
51
  </form>
52
52
  </div>
53
53
 
54
54
  </div>
55
55
 
56
-
56
+
57
57
  <div class="nav-section">
58
58
  <h3>Table of Contents</h3>
59
59
 
@@ -85,8 +85,8 @@
85
85
 
86
86
 
87
87
  <div id="project-metadata">
88
-
89
- <div id="fileindex-section" class="nav-section">
88
+
89
+ <div class="nav-section" id="fileindex-section">
90
90
  <h3>Pages</h3>
91
91
 
92
92
  <ul class="link-list">
@@ -102,7 +102,7 @@
102
102
  </div>
103
103
  </nav>
104
104
 
105
- <main role="main" aria-label="Page COPYING.md">
105
+ <main aria-label="Page COPYING.md" role="main">
106
106
 
107
107
  <h3 id="label-GNU+GENERAL+PUBLIC+LICENSE">GNU GENERAL PUBLIC LICENSE<span><a href="#label-GNU+GENERAL+PUBLIC+LICENSE">&para;</a> <a href="#top">&uarr;</a></span></h3>
108
108
 
@@ -372,7 +372,6 @@
372
372
 
373
373
  <footer id="validator-badges" role="contentinfo">
374
374
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
375
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.0.
375
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.2.
376
376
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
377
377
  </footer>
378
-
data/html/Gemfile.html CHANGED
@@ -4,27 +4,27 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>Gemfile - wwwjdic 16.0.0</title>
7
+ <title>Gemfile - 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" role="document" class="file">
24
+ <body class="file" id="top" role="document">
25
25
  <nav role="navigation">
26
26
  <div id="project-navigation">
27
- <div id="home-section" role="region" title="Quick navigation" class="nav-section">
27
+ <div class="nav-section" id="home-section" role="region" title="Quick navigation">
28
28
  <h2>
29
29
  <a href="./index.html" rel="home">Home</a>
30
30
  </h2>
@@ -36,28 +36,28 @@
36
36
  </div>
37
37
  </div>
38
38
 
39
- <div id="search-section" role="search" class="project-section initially-hidden">
40
- <form action="#" method="get" accept-charset="utf-8">
39
+ <div class="project-section initially-hidden" id="search-section" role="search">
40
+ <form accept-charset="utf-8" action="#" method="get">
41
41
  <div id="search-field-wrapper">
42
- <input id="search-field" role="combobox" aria-label="Search"
43
- aria-autocomplete="list" aria-controls="search-results"
44
- type="text" name="search" placeholder="Search" spellcheck="false"
45
- title="Type to search, Up and Down to navigate, Enter to load">
42
+ <input aria-autocomplete="list" aria-controls="search-results" aria-label="Search"
43
+ id="search-field" name="search"
44
+ placeholder="Search" role="combobox" spellcheck="false" title="Type to search, Up and Down to navigate, Enter to load"
45
+ type="text">
46
46
  </div>
47
47
 
48
- <ul id="search-results" aria-label="Search Results"
49
- aria-busy="false" aria-expanded="false"
50
- aria-atomic="false" class="initially-hidden"></ul>
48
+ <ul aria-atomic="false" aria-busy="false"
49
+ aria-expanded="false" aria-label="Search Results"
50
+ class="initially-hidden" id="search-results"></ul>
51
51
  </form>
52
52
  </div>
53
53
 
54
54
  </div>
55
55
 
56
-
56
+
57
57
 
58
58
  <div id="project-metadata">
59
-
60
- <div id="fileindex-section" class="nav-section">
59
+
60
+ <div class="nav-section" id="fileindex-section">
61
61
  <h3>Pages</h3>
62
62
 
63
63
  <ul class="link-list">
@@ -73,11 +73,11 @@
73
73
  </div>
74
74
  </nav>
75
75
 
76
- <main role="main" aria-label="Page Gemfile">
76
+ <main aria-label="Page Gemfile" role="main">
77
77
 
78
78
  <p># frozen_string_literal: true</p>
79
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>
80
+ <p># wwwjdic # © 2014-2021 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;. # # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani # # SPDX-&lt;span&gt;&lt;/span&gt;License-Identifier: FSFAP</p>
81
81
 
82
82
  <p>source &#39;<a href="https://rubygems.org">rubygems.org</a>&#39;</p>
83
83
 
@@ -89,7 +89,6 @@
89
89
 
90
90
  <footer id="validator-badges" role="contentinfo">
91
91
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
92
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.0.
92
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.2.
93
93
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
94
94
  </footer>
95
-