wwwjdic 13.0.1 → 14.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 +19 -1
- data/Gemfile +1 -1
- data/README.md +79 -73
- data/Rakefile +2 -2
- data/acknowledgements.md +2 -2
- data/authors.md +2 -2
- data/copyright.md +4 -4
- data/examples/basics.rb +1 -1
- data/examples/translate.rb +1 -1
- data/examples/uri.rb +1 -1
- data/html/CHANGELOG.html +28 -7
- data/html/COPYING_md.html +7 -6
- data/html/Gemfile.html +8 -7
- data/html/Object.html +7 -4
- data/html/README_md.html +34 -47
- data/html/Rakefile.html +10 -9
- data/html/WWWJDic.html +11 -8
- data/html/WWWJDic/ParsableDuckType.html +9 -6
- data/html/WWWJDic/Parser.html +9 -6
- data/html/WWWJDic/Parsers.html +7 -4
- data/html/WWWJDic/Parsers/Dict.html +8 -5
- data/html/WWWJDic/Parsers/Display.html +8 -5
- data/html/WWWJDic/Parsers/Key.html +8 -5
- data/html/WWWJDic/Parsers/Search.html +8 -5
- data/html/WWWJDic/Parsers/Server.html +8 -5
- data/html/WWWJDic/Splitter.html +8 -5
- data/html/WWWJDic/Utils.html +8 -5
- data/html/WWWJDic/Utils/Downloader.html +7 -4
- data/html/WWWJDic/Utils/Downloader/Downloader.html +7 -4
- data/html/WWWJDic/Utils/Raisers.html +23 -20
- data/html/WWWJDic/WWWJDic.html +14 -11
- data/html/acknowledgements_md.html +9 -8
- data/html/authors_md.html +9 -8
- data/html/copyright_md.html +198 -195
- data/html/created.rid +57 -58
- data/html/css/rdoc.css +35 -6
- data/html/index.html +34 -47
- 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 +10 -10
- data/lib/wwwjdic.rb +4 -2
- data/lib/wwwjdic/application.rb +8 -8
- data/lib/wwwjdic/constants.rb +1 -1
- data/lib/wwwjdic/locales/de.yml +3 -1
- data/lib/wwwjdic/locales/en.yml +3 -1
- data/lib/wwwjdic/locales/es.yml +3 -1
- data/lib/wwwjdic/locales/fr.yml +3 -2
- data/lib/wwwjdic/locales/hu.yml +3 -2
- data/lib/wwwjdic/locales/it.yml +3 -2
- data/lib/wwwjdic/locales/ja.yml +3 -3
- data/lib/wwwjdic/locales/nl.yml +3 -1
- data/lib/wwwjdic/locales/ru.yml +3 -1
- data/lib/wwwjdic/locales/sl.yml +3 -1
- data/lib/wwwjdic/locales/sv.yml +3 -1
- data/lib/wwwjdic/parser.rb +3 -3
- data/lib/wwwjdic/parsers/dict.rb +2 -2
- data/lib/wwwjdic/parsers/display.rb +2 -2
- data/lib/wwwjdic/parsers/key.rb +2 -2
- data/lib/wwwjdic/parsers/search.rb +2 -2
- data/lib/wwwjdic/parsers/server.rb +2 -2
- data/lib/wwwjdic/utils/downloader.rb +2 -2
- data/lib/wwwjdic/utils/raisers.rb +4 -3
- data/lib/wwwjdic/utils/splitter.rb +2 -2
- data/lib/wwwjdic/version.rb +16 -8
- data/test/test_helper.rb +4 -1
- data/test/test_wwwjdic.rb +4 -4
- data/test/wwwjdic/locales/de.yml +1 -1
- data/test/wwwjdic/locales/en.yml +1 -1
- data/test/wwwjdic/locales/es.yml +1 -1
- data/test/wwwjdic/locales/fr.yml +1 -1
- data/test/wwwjdic/locales/hu.yml +1 -1
- data/test/wwwjdic/locales/it.yml +3 -3
- data/test/wwwjdic/locales/ja.yml +1 -1
- data/test/wwwjdic/locales/nl.yml +1 -1
- data/test/wwwjdic/locales/ru.yml +1 -1
- data/test/wwwjdic/locales/sl.yml +1 -1
- data/test/wwwjdic/locales/sv.yml +1 -1
- data/test/wwwjdic/locales/test_locales.rb +11 -11
- data/test/wwwjdic/parsers/test_dict.rb +4 -4
- data/test/wwwjdic/parsers/test_display.rb +4 -4
- data/test/wwwjdic/parsers/test_key.rb +3 -3
- data/test/wwwjdic/parsers/test_server.rb +4 -4
- data/test/wwwjdic/test_application.rb +30 -30
- data/test/wwwjdic/test_parsable_duck_type.rb +3 -3
- data/test/wwwjdic/utils/test_downloader.rb +1 -1
- data/test/wwwjdic/utils/test_raisers.rb +1 -1
- data/wwwjdic.gemspec +15 -14
- metadata +26 -28
- data/html/js/jquery.js +0 -4
- data/html/wwwjdic_gemspec.html +0 -161
data/html/WWWJDic/Parser.html
CHANGED
@@ -4,15 +4,18 @@
|
|
4
4
|
<head>
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
|
7
|
-
<title>class WWWJDic::Parser - wwwjdic
|
7
|
+
<title>class WWWJDic::Parser - wwwjdic 14.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">
|
@@ -95,7 +98,7 @@
|
|
95
98
|
<p><a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
|
96
99
|
</dd><dt>Copyright
|
97
100
|
<dd>
|
98
|
-
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
|
101
|
+
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
|
99
102
|
</dd><dt>License
|
100
103
|
<dd>
|
101
104
|
<p>GNU General Public License version 3</p>
|
@@ -163,7 +166,7 @@
|
|
163
166
|
<pre> <span class="ruby-comment"># File lib/wwwjdic/parser.rb</span>
|
164
167
|
<span class="line-num">34</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">initialize</span>(<span class="ruby-identifier">args</span> = {})
|
165
168
|
<span class="line-num">35</span> <span class="ruby-ivar">@parsers</span> = <span class="ruby-constant">Hash</span>.<span class="ruby-identifier">new</span>
|
166
|
-
<span class="line-num">36</span> <span class="ruby-constant">ALL_PARAMS</span>.<span class="ruby-identifier">each</span> {<span class="ruby-operator">|</span><span class="ruby-identifier">param</span><span class="ruby-operator">|</span> <span class="ruby-identifier">parsers</span>[<span class="ruby-identifier">param</span>] = <span class="ruby-identifier">args</span>[<span class="ruby-identifier">param</span>]} <span class="ruby-keyword">unless</span> <span class="ruby-identifier">args</span>.<span class="ruby-identifier">nil?</span>
|
169
|
+
<span class="line-num">36</span> <span class="ruby-constant">ALL_PARAMS</span>.<span class="ruby-identifier">each</span> { <span class="ruby-operator">|</span><span class="ruby-identifier">param</span><span class="ruby-operator">|</span> <span class="ruby-identifier">parsers</span>[<span class="ruby-identifier">param</span>] = <span class="ruby-identifier">args</span>[<span class="ruby-identifier">param</span>] } <span class="ruby-keyword">unless</span> <span class="ruby-identifier">args</span>.<span class="ruby-identifier">nil?</span>
|
167
170
|
<span class="line-num">37</span> <span class="ruby-keyword">end</span></pre>
|
168
171
|
</div>
|
169
172
|
|
@@ -227,7 +230,7 @@
|
|
227
230
|
|
228
231
|
<footer id="validator-badges" role="contentinfo">
|
229
232
|
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
230
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.
|
233
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
|
231
234
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
232
235
|
</footer>
|
233
236
|
|
data/html/WWWJDic/Parsers.html
CHANGED
@@ -4,15 +4,18 @@
|
|
4
4
|
<head>
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
|
7
|
-
<title>module WWWJDic::Parsers - wwwjdic
|
7
|
+
<title>module WWWJDic::Parsers - wwwjdic 14.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">
|
@@ -90,7 +93,7 @@
|
|
90
93
|
|
91
94
|
<footer id="validator-badges" role="contentinfo">
|
92
95
|
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
93
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.
|
96
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
|
94
97
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
95
98
|
</footer>
|
96
99
|
|
@@ -4,15 +4,18 @@
|
|
4
4
|
<head>
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
|
7
|
-
<title>class WWWJDic::Parsers::Dict - wwwjdic
|
7
|
+
<title>class WWWJDic::Parsers::Dict - wwwjdic 14.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">
|
@@ -106,7 +109,7 @@
|
|
106
109
|
<p><a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
|
107
110
|
</dd><dt>Copyright
|
108
111
|
<dd>
|
109
|
-
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
|
112
|
+
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
|
110
113
|
</dd><dt>License
|
111
114
|
<dd>
|
112
115
|
<p>GNU General Public License version 3</p>
|
@@ -185,7 +188,7 @@
|
|
185
188
|
|
186
189
|
<footer id="validator-badges" role="contentinfo">
|
187
190
|
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
188
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.
|
191
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
|
189
192
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
190
193
|
</footer>
|
191
194
|
|
@@ -4,15 +4,18 @@
|
|
4
4
|
<head>
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
|
7
|
-
<title>class WWWJDic::Parsers::Display - wwwjdic
|
7
|
+
<title>class WWWJDic::Parsers::Display - wwwjdic 14.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">
|
@@ -106,7 +109,7 @@
|
|
106
109
|
<p><a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
|
107
110
|
</dd><dt>Copyright
|
108
111
|
<dd>
|
109
|
-
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
|
112
|
+
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
|
110
113
|
</dd><dt>License
|
111
114
|
<dd>
|
112
115
|
<p>GNU General Public License version 3</p>
|
@@ -178,7 +181,7 @@
|
|
178
181
|
|
179
182
|
<footer id="validator-badges" role="contentinfo">
|
180
183
|
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
181
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.
|
184
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
|
182
185
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
183
186
|
</footer>
|
184
187
|
|
@@ -4,15 +4,18 @@
|
|
4
4
|
<head>
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
|
7
|
-
<title>class WWWJDic::Parsers::Key - wwwjdic
|
7
|
+
<title>class WWWJDic::Parsers::Key - wwwjdic 14.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">
|
@@ -143,7 +146,7 @@
|
|
143
146
|
<p><a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
|
144
147
|
</dd><dt>Copyright
|
145
148
|
<dd>
|
146
|
-
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
|
149
|
+
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
|
147
150
|
</dd><dt>License
|
148
151
|
<dd>
|
149
152
|
<p>GNU General Public License version 3</p>
|
@@ -215,7 +218,7 @@
|
|
215
218
|
|
216
219
|
<footer id="validator-badges" role="contentinfo">
|
217
220
|
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
218
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.
|
221
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
|
219
222
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
220
223
|
</footer>
|
221
224
|
|
@@ -4,15 +4,18 @@
|
|
4
4
|
<head>
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
|
7
|
-
<title>class WWWJDic::Parsers::Search - wwwjdic
|
7
|
+
<title>class WWWJDic::Parsers::Search - wwwjdic 14.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">
|
@@ -140,7 +143,7 @@
|
|
140
143
|
<p><a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
|
141
144
|
</dd><dt>Copyright
|
142
145
|
<dd>
|
143
|
-
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
|
146
|
+
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
|
144
147
|
</dd><dt>License
|
145
148
|
<dd>
|
146
149
|
<p>GNU General Public License version 3</p>
|
@@ -208,7 +211,7 @@
|
|
208
211
|
|
209
212
|
<footer id="validator-badges" role="contentinfo">
|
210
213
|
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
211
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.
|
214
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
|
212
215
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
213
216
|
</footer>
|
214
217
|
|
@@ -4,15 +4,18 @@
|
|
4
4
|
<head>
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
|
7
|
-
<title>class WWWJDic::Parsers::Server - wwwjdic
|
7
|
+
<title>class WWWJDic::Parsers::Server - wwwjdic 14.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">
|
@@ -104,7 +107,7 @@
|
|
104
107
|
<p><a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
|
105
108
|
</dd><dt>Copyright
|
106
109
|
<dd>
|
107
|
-
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
|
110
|
+
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
|
108
111
|
</dd><dt>License
|
109
112
|
<dd>
|
110
113
|
<p>GNU General Public License version 3</p>
|
@@ -176,7 +179,7 @@
|
|
176
179
|
|
177
180
|
<footer id="validator-badges" role="contentinfo">
|
178
181
|
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
179
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.
|
182
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
|
180
183
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
181
184
|
</footer>
|
182
185
|
|
data/html/WWWJDic/Splitter.html
CHANGED
@@ -4,15 +4,18 @@
|
|
4
4
|
<head>
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
|
7
|
-
<title>class WWWJDic::Splitter - wwwjdic
|
7
|
+
<title>class WWWJDic::Splitter - wwwjdic 14.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">
|
@@ -103,7 +106,7 @@
|
|
103
106
|
<p><a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
|
104
107
|
</dd><dt>Copyright
|
105
108
|
<dd>
|
106
|
-
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
|
109
|
+
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
|
107
110
|
</dd><dt>License
|
108
111
|
<dd>
|
109
112
|
<p>GNU General Public License version 3</p>
|
@@ -372,7 +375,7 @@
|
|
372
375
|
|
373
376
|
<footer id="validator-badges" role="contentinfo">
|
374
377
|
<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.
|
378
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
|
376
379
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
377
380
|
</footer>
|
378
381
|
|
data/html/WWWJDic/Utils.html
CHANGED
@@ -4,15 +4,18 @@
|
|
4
4
|
<head>
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
|
7
|
-
<title>module WWWJDic::Utils - wwwjdic
|
7
|
+
<title>module WWWJDic::Utils - wwwjdic 14.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">
|
@@ -76,7 +79,7 @@
|
|
76
79
|
<p><a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
|
77
80
|
</dd><dt>Copyright
|
78
81
|
<dd>
|
79
|
-
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
|
82
|
+
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
|
80
83
|
</dd><dt>License
|
81
84
|
<dd>
|
82
85
|
<p>GNU General Public License version 3</p>
|
@@ -102,7 +105,7 @@
|
|
102
105
|
|
103
106
|
<footer id="validator-badges" role="contentinfo">
|
104
107
|
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
105
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.
|
108
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
|
106
109
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
107
110
|
</footer>
|
108
111
|
|
@@ -4,15 +4,18 @@
|
|
4
4
|
<head>
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
|
7
|
-
<title>module WWWJDic::Utils::Downloader - wwwjdic
|
7
|
+
<title>module WWWJDic::Utils::Downloader - wwwjdic 14.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">
|
@@ -102,7 +105,7 @@
|
|
102
105
|
|
103
106
|
<footer id="validator-badges" role="contentinfo">
|
104
107
|
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
105
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.
|
108
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
|
106
109
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
107
110
|
</footer>
|
108
111
|
|
@@ -4,15 +4,18 @@
|
|
4
4
|
<head>
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
|
7
|
-
<title>class WWWJDic::Utils::Downloader::Downloader - wwwjdic
|
7
|
+
<title>class WWWJDic::Utils::Downloader::Downloader - wwwjdic 14.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">
|
@@ -221,7 +224,7 @@ Revision:: 2012-03-25 23:01:19 -0600</pre>
|
|
221
224
|
|
222
225
|
<footer id="validator-badges" role="contentinfo">
|
223
226
|
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
224
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.
|
227
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
|
225
228
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
226
229
|
</footer>
|
227
230
|
|
@@ -4,15 +4,18 @@
|
|
4
4
|
<head>
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
|
7
|
-
<title>module WWWJDic::Utils::Raisers - wwwjdic
|
7
|
+
<title>module WWWJDic::Utils::Raisers - wwwjdic 14.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">
|
@@ -90,7 +93,7 @@
|
|
90
93
|
<p><a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
|
91
94
|
</dd><dt>Copyright
|
92
95
|
<dd>
|
93
|
-
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
|
96
|
+
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
|
94
97
|
</dd><dt>License
|
95
98
|
<dd>
|
96
99
|
<p>GNU General Public License version 3</p>
|
@@ -135,11 +138,11 @@
|
|
135
138
|
|
136
139
|
<div class="method-source-code" id="raiser_array-source">
|
137
140
|
<pre> <span class="ruby-comment"># File lib/wwwjdic/utils/raisers.rb</span>
|
138
|
-
<span class="line-num">
|
139
|
-
<span class="line-num">
|
140
|
-
<span class="line-num">
|
141
|
-
<span class="line-num">
|
142
|
-
<span class="line-num">
|
141
|
+
<span class="line-num">45</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">raiser_array</span>(<span class="ruby-identifier">name</span> = <span class="ruby-string">'error.value'</span>, <span class="ruby-identifier">value</span> = <span class="ruby-keyword">nil</span>, <span class="ruby-identifier">array</span> = <span class="ruby-keyword">nil</span>)
|
142
|
+
<span class="line-num">46</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">value</span>.<span class="ruby-identifier">nil?</span>
|
143
|
+
<span class="line-num">47</span> <span class="ruby-identifier">raise</span> <span class="ruby-constant">ArgumentError</span>, <span class="ruby-constant">I18n</span>.<span class="ruby-identifier">t</span>(<span class="ruby-identifier">name</span>, <span class="ruby-value">value:</span> <span class="ruby-identifier">value</span>) <span class="ruby-keyword">unless</span> <span class="ruby-identifier">array</span>.<span class="ruby-identifier">include?</span> <span class="ruby-identifier">value</span>
|
144
|
+
<span class="line-num">48</span> <span class="ruby-keyword">end</span>
|
145
|
+
<span class="line-num">49</span> <span class="ruby-keyword">end</span></pre>
|
143
146
|
</div>
|
144
147
|
|
145
148
|
</div>
|
@@ -170,11 +173,11 @@
|
|
170
173
|
|
171
174
|
<div class="method-source-code" id="raiser_downcase-source">
|
172
175
|
<pre> <span class="ruby-comment"># File lib/wwwjdic/utils/raisers.rb</span>
|
173
|
-
<span class="line-num">
|
174
|
-
<span class="line-num">
|
175
|
-
<span class="line-num">
|
176
|
-
<span class="line-num">
|
177
|
-
<span class="line-num">
|
176
|
+
<span class="line-num">53</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">raiser_downcase</span>(<span class="ruby-identifier">name</span> = <span class="ruby-string">'error.value'</span>, <span class="ruby-identifier">value</span> = <span class="ruby-keyword">nil</span>, <span class="ruby-identifier">array</span> = <span class="ruby-keyword">nil</span>)
|
177
|
+
<span class="line-num">54</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">value</span>.<span class="ruby-identifier">nil?</span>
|
178
|
+
<span class="line-num">55</span> <span class="ruby-identifier">raise</span> <span class="ruby-constant">ArgumentError</span>, <span class="ruby-constant">I18n</span>.<span class="ruby-identifier">t</span>(<span class="ruby-identifier">name</span>, <span class="ruby-value">value:</span> <span class="ruby-identifier">value</span>) <span class="ruby-keyword">unless</span> <span class="ruby-identifier">array</span>.<span class="ruby-identifier">include?</span> <span class="ruby-identifier">value</span>.<span class="ruby-identifier">downcase</span>
|
179
|
+
<span class="line-num">56</span> <span class="ruby-keyword">end</span>
|
180
|
+
<span class="line-num">57</span> <span class="ruby-keyword">end</span></pre>
|
178
181
|
</div>
|
179
182
|
|
180
183
|
</div>
|
@@ -205,11 +208,11 @@
|
|
205
208
|
|
206
209
|
<div class="method-source-code" id="raiser_to_i-source">
|
207
210
|
<pre> <span class="ruby-comment"># File lib/wwwjdic/utils/raisers.rb</span>
|
208
|
-
<span class="line-num">
|
209
|
-
<span class="line-num">
|
210
|
-
<span class="line-num">
|
211
|
-
<span class="line-num">
|
212
|
-
<span class="line-num">
|
211
|
+
<span class="line-num">61</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">raiser_to_i</span>(<span class="ruby-identifier">name</span> = <span class="ruby-string">'error.value'</span>, <span class="ruby-identifier">value</span> = <span class="ruby-keyword">nil</span>, <span class="ruby-identifier">array</span> = <span class="ruby-keyword">nil</span>)
|
212
|
+
<span class="line-num">62</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">value</span>.<span class="ruby-identifier">nil?</span>
|
213
|
+
<span class="line-num">63</span> <span class="ruby-identifier">raise</span> <span class="ruby-constant">ArgumentError</span>, <span class="ruby-constant">I18n</span>.<span class="ruby-identifier">t</span>(<span class="ruby-identifier">name</span>, <span class="ruby-value">value:</span> <span class="ruby-identifier">value</span>) <span class="ruby-keyword">unless</span> <span class="ruby-identifier">array</span>.<span class="ruby-identifier">include?</span> <span class="ruby-identifier">value</span>.<span class="ruby-identifier">to_i</span>
|
214
|
+
<span class="line-num">64</span> <span class="ruby-keyword">end</span>
|
215
|
+
<span class="line-num">65</span> <span class="ruby-keyword">end</span></pre>
|
213
216
|
</div>
|
214
217
|
|
215
218
|
</div>
|
@@ -229,7 +232,7 @@
|
|
229
232
|
|
230
233
|
<footer id="validator-badges" role="contentinfo">
|
231
234
|
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
232
|
-
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.
|
235
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
|
233
236
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
234
237
|
</footer>
|
235
238
|
|