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.
- checksums.yaml +4 -4
- data/CHANGELOG +63 -1
- data/Gemfile +9 -1
- data/README.md +499 -225
- data/Rakefile +12 -3
- data/copyright.md +17 -29
- data/examples/basics.rb +55 -45
- data/examples/translate.rb +161 -86
- data/examples/uri.rb +50 -78
- data/html/CHANGELOG.html +80 -21
- data/html/COPYING_md.html +13 -24
- data/html/Gemfile.html +12 -21
- data/html/Object.html +810 -45
- data/html/README_md.html +309 -161
- data/html/Rakefile.html +15 -24
- data/html/WWWJDic.html +41 -81
- data/html/WWWJDic/ParsableDuckType.html +15 -34
- data/html/WWWJDic/Parser.html +25 -64
- data/html/WWWJDic/Parsers.html +8 -13
- data/html/WWWJDic/Parsers/Dict.html +29 -54
- data/html/WWWJDic/Parsers/Display.html +24 -47
- data/html/WWWJDic/Parsers/Key.html +25 -48
- data/html/WWWJDic/Parsers/Search.html +19 -38
- data/html/WWWJDic/Parsers/Server.html +24 -47
- data/html/WWWJDic/Splitter.html +49 -142
- data/html/WWWJDic/Utils.html +9 -14
- data/html/WWWJDic/Utils/Downloader.html +8 -13
- data/html/WWWJDic/Utils/Downloader/Downloader.html +29 -63
- data/html/WWWJDic/Utils/Raisers.html +21 -72
- data/html/WWWJDic/WWWJDic.html +131 -312
- data/html/copyright_md.html +206 -225
- data/html/created.rid +33 -58
- data/html/css/rdoc.css +35 -6
- data/html/index.html +301 -169
- data/html/js/darkfish.js +22 -99
- data/html/js/navigation.js +4 -40
- data/html/js/navigation.js.gz +0 -0
- data/html/js/search.js +32 -31
- data/html/js/search_index.js +1 -1
- data/html/js/search_index.js.gz +0 -0
- data/html/js/searcher.js +6 -6
- data/html/js/searcher.js.gz +0 -0
- data/html/table_of_contents.html +160 -197
- data/lib/wwwjdic.rb +16 -15
- data/lib/wwwjdic/application.rb +69 -36
- data/lib/wwwjdic/constants.rb +48 -10
- data/lib/wwwjdic/locales/de.yml +9 -4
- data/lib/wwwjdic/locales/en.yml +9 -4
- data/lib/wwwjdic/locales/es.yml +9 -4
- data/lib/wwwjdic/locales/fr.yml +9 -4
- data/lib/wwwjdic/locales/hu.yml +9 -4
- data/lib/wwwjdic/locales/it.yml +9 -4
- data/lib/wwwjdic/locales/ja.yml +11 -5
- data/lib/wwwjdic/locales/nl.yml +9 -4
- data/lib/wwwjdic/locales/ru.yml +9 -4
- data/lib/wwwjdic/locales/sl.yml +9 -4
- data/lib/wwwjdic/locales/sv.yml +9 -4
- data/lib/wwwjdic/parser.rb +15 -8
- data/lib/wwwjdic/parsers/dict.rb +13 -8
- data/lib/wwwjdic/parsers/display.rb +10 -3
- data/lib/wwwjdic/parsers/key.rb +11 -3
- data/lib/wwwjdic/parsers/search.rb +12 -3
- data/lib/wwwjdic/parsers/server.rb +10 -3
- data/lib/wwwjdic/utils/downloader.rb +27 -30
- data/lib/wwwjdic/utils/raisers.rb +14 -15
- data/lib/wwwjdic/utils/splitter.rb +33 -18
- data/lib/wwwjdic/version.rb +28 -20
- data/test/test_helper.rb +12 -1
- data/test/test_wwwjdic.rb +12 -4
- data/test/wwwjdic/locales/de.yml +9 -1
- data/test/wwwjdic/locales/en.yml +9 -1
- data/test/wwwjdic/locales/es.yml +9 -1
- data/test/wwwjdic/locales/fr.yml +9 -1
- data/test/wwwjdic/locales/hu.yml +9 -1
- data/test/wwwjdic/locales/it.yml +10 -1
- data/test/wwwjdic/locales/ja.yml +11 -2
- data/test/wwwjdic/locales/nl.yml +9 -1
- data/test/wwwjdic/locales/ru.yml +9 -1
- data/test/wwwjdic/locales/sl.yml +9 -1
- data/test/wwwjdic/locales/sv.yml +9 -1
- data/test/wwwjdic/locales/test_locales.rb +43 -24
- data/test/wwwjdic/parsers/test_dict.rb +67 -37
- data/test/wwwjdic/parsers/test_display.rb +13 -5
- data/test/wwwjdic/parsers/test_key.rb +12 -4
- data/test/wwwjdic/parsers/test_server.rb +13 -5
- data/test/wwwjdic/test_application.rb +201 -149
- data/test/wwwjdic/test_parsable_duck_type.rb +11 -6
- data/test/wwwjdic/utils/test_downloader.rb +9 -1
- data/test/wwwjdic/utils/test_raisers.rb +48 -29
- data/wwwjdic.gemspec +46 -26
- metadata +55 -43
- data/acknowledgements.md +0 -55
- data/authors.md +0 -67
- data/html/acknowledgements_md.html +0 -149
- data/html/authors_md.html +0 -181
- data/html/js/jquery.js +0 -4
- 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
|
-
#
|
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
|
-
#
|
26
|
-
puts '
|
27
|
-
puts "
|
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
|
37
|
+
a_wwwjdic = WWWJDic.breener
|
38
|
+
puts '------------------------------------------'
|
30
39
|
puts
|
31
40
|
i += 1
|
32
41
|
|
33
|
-
#
|
34
|
-
#
|
35
|
-
|
36
|
-
|
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
|
-
#
|
43
|
-
#
|
44
|
-
|
45
|
-
|
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
|
-
#
|
52
|
-
#
|
53
|
-
|
54
|
-
|
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
|
-
#
|
61
|
-
#
|
62
|
-
|
63
|
-
|
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
|
-
#
|
70
|
-
#
|
71
|
-
|
72
|
-
|
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
|
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/
|
15
|
-
<script src="./js/
|
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
|
-
|
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">¶</a> <a href="#top">↑</a></span></h1>
|
130
|
+
|
131
|
+
<pre>* MAJOR update from Ruby '~> 2.7' to Ruby '~> 3.0'.
|
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 'E' (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">¶</a> <a href="#top">↑</a></span></h1>
|
144
|
+
|
145
|
+
<pre>* MAJOR changed key search type default from "exact" to "english".
|
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 'E' (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">¶</a> <a href="#top">↑</a></span></h1>
|
164
|
+
|
165
|
+
<pre>* MAJOR update from Ruby '~> 2.6' to Ruby '~> 2.7'.
|
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 'Q' (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">¶</a> <a href="#top">↑</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 'Q' (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">¶</a> <a href="#top">↑</a></span></h1>
|
137
196
|
|
138
197
|
<pre>* MAJOR moving from a_gem.required_ruby_version = '~> 2.5' 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.
|
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
|
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/
|
15
|
-
<script src="./js/
|
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
|
-
|
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
|
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' and
|
129
|
+
<p>For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' 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' 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
|
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
|
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.
|
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
|
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/
|
15
|
-
<script src="./js/
|
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
|
-
|
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>#
|
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 <<a href="http://www.gnu.org/licenses">www.gnu.org/licenses</a>/>. # # SPDX-FileCopyrightText: 2014 Marco Bresciani # # SPDX-<span></span>License-Identifier: FSFAP</p>
|
90
81
|
|
91
82
|
<p>source '<a href="https://rubygems.org">rubygems.org</a>'</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.
|
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
|
|