gravaty 10.0.0 → 11.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +7 -0
  3. data/Gemfile +5 -1
  4. data/README.md +219 -212
  5. data/Rakefile +9 -3
  6. data/copyright.md +33 -136
  7. data/examples/avatar.rb +70 -43
  8. data/examples/basics.rb +30 -20
  9. data/examples/profile.rb +77 -50
  10. data/examples/xmlrpc.rb +24 -10
  11. data/gravaty.gemspec +46 -25
  12. data/html/CHANGELOG.html +13 -20
  13. data/html/COPYING_md.html +8 -24
  14. data/html/Gemfile.html +7 -21
  15. data/html/Gravaty.html +49 -113
  16. data/html/Gravaty/Gravaty.html +138 -343
  17. data/html/Gravaty/ParsableDuckType.html +14 -33
  18. data/html/Gravaty/Parser.html +27 -66
  19. data/html/Gravaty/Parsers.html +3 -11
  20. data/html/Gravaty/Parsers/Avatar.html +19 -36
  21. data/html/Gravaty/Parsers/Callback.html +21 -37
  22. data/html/Gravaty/Parsers/Default.html +28 -45
  23. data/html/Gravaty/Parsers/Force.html +21 -37
  24. data/html/Gravaty/Parsers/Format.html +22 -42
  25. data/html/Gravaty/Parsers/Pixelsize.html +22 -42
  26. data/html/Gravaty/Parsers/Rating.html +22 -42
  27. data/html/Gravaty/Parsers/Secure.html +19 -36
  28. data/html/Gravaty/Parsers/Type.html +22 -42
  29. data/html/Gravaty/Utils.html +11 -13
  30. data/html/Gravaty/Utils/Downloader.html +3 -11
  31. data/html/Gravaty/Utils/Downloader/Downloader.html +25 -59
  32. data/html/Gravaty/Utils/Raisers.html +24 -55
  33. data/html/Gravaty/Utils/Rfc5322.html +12 -19
  34. data/html/Gravaty/Utils/RpcConnector.html +11 -13
  35. data/html/Gravaty/Utils/RpcConnector/RpcConnector.html +33 -73
  36. data/html/Object.html +728 -57
  37. data/html/README_md.html +105 -100
  38. data/html/Rakefile.html +9 -23
  39. data/html/copyright_md.html +17 -119
  40. data/html/created.rid +48 -55
  41. data/html/css/rdoc.css +1 -1
  42. data/html/index.html +97 -114
  43. data/html/js/navigation.js.gz +0 -0
  44. data/html/js/search_index.js +1 -1
  45. data/html/js/search_index.js.gz +0 -0
  46. data/html/js/searcher.js.gz +0 -0
  47. data/html/table_of_contents.html +219 -651
  48. data/lib/gravaty.rb +22 -15
  49. data/lib/gravaty/application.rb +40 -25
  50. data/lib/gravaty/constants.rb +20 -11
  51. data/lib/gravaty/locales/en.yml +9 -3
  52. data/lib/gravaty/locales/it.yml +9 -3
  53. data/lib/gravaty/locales/ja.yml +7 -4
  54. data/lib/gravaty/parser.rb +16 -10
  55. data/lib/gravaty/parsers/avatar.rb +11 -3
  56. data/lib/gravaty/parsers/callback.rb +13 -4
  57. data/lib/gravaty/parsers/default.rb +24 -16
  58. data/lib/gravaty/parsers/force.rb +12 -2
  59. data/lib/gravaty/parsers/format.rb +11 -2
  60. data/lib/gravaty/parsers/pixelsize.rb +12 -3
  61. data/lib/gravaty/parsers/rating.rb +12 -3
  62. data/lib/gravaty/parsers/secure.rb +11 -2
  63. data/lib/gravaty/parsers/type.rb +11 -2
  64. data/lib/gravaty/utils/downloader.rb +98 -96
  65. data/lib/gravaty/utils/raisers.rb +19 -12
  66. data/lib/gravaty/utils/rfc5322.rb +54 -41
  67. data/lib/gravaty/utils/rpc_connector.rb +19 -11
  68. data/lib/gravaty/version.rb +10 -2
  69. data/test/gravaty/locales/en.yml +29 -0
  70. data/test/gravaty/locales/it.yml +29 -0
  71. data/test/gravaty/locales/ja.yml +27 -0
  72. data/test/gravaty/locales/test_locales.rb +17 -13
  73. data/test/gravaty/parsers/test_avatar.rb +9 -1
  74. data/test/gravaty/parsers/test_callback.rb +12 -4
  75. data/test/gravaty/parsers/test_default.rb +25 -21
  76. data/test/gravaty/parsers/test_force.rb +9 -1
  77. data/test/gravaty/parsers/test_format.rb +18 -11
  78. data/test/gravaty/parsers/test_pixelsize.rb +19 -12
  79. data/test/gravaty/parsers/test_rating.rb +18 -11
  80. data/test/gravaty/parsers/test_secure.rb +9 -1
  81. data/test/gravaty/parsers/test_type.rb +14 -5
  82. data/test/gravaty/test_application.rb +14 -6
  83. data/test/gravaty/test_avatar.rb +94 -59
  84. data/test/gravaty/test_parser.rb +11 -5
  85. data/test/gravaty/test_profile.rb +47 -25
  86. data/test/gravaty/utils/test_downloader.rb +43 -28
  87. data/test/gravaty/utils/test_raisers.rb +42 -26
  88. data/test/gravaty/utils/test_rfc5322.rb +35 -13
  89. data/test/gravaty/utils/test_rpc_connector.rb +83 -39
  90. data/test/test_gravaty.rb +12 -4
  91. data/test/test_helper.rb +15 -9
  92. metadata +54 -40
  93. data/ISSUES.md +0 -62
  94. data/acknowledgements.md +0 -66
  95. data/authors.md +0 -63
  96. data/examples/cacert.pem +0 -3466
  97. data/html/ISSUES_md.html +0 -166
  98. data/html/acknowledgements_md.html +0 -161
  99. data/html/authors_md.html +0 -174
  100. data/html/examples/cacert_pem.html +0 -1078
data/html/ISSUES_md.html DELETED
@@ -1,166 +0,0 @@
1
- <!DOCTYPE html>
2
-
3
- <html>
4
- <head>
5
- <meta charset="UTF-8">
6
-
7
- <title>ISSUES - gravaty 10.0.0</title>
8
-
9
- <script type="text/javascript">
10
- var rdoc_rel_prefix = "./";
11
- var index_rel_prefix = "./";
12
- </script>
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>
19
-
20
- <link href="./css/fonts.css" rel="stylesheet">
21
- <link href="./css/rdoc.css" rel="stylesheet">
22
-
23
-
24
-
25
-
26
- <body id="top" role="document" class="file">
27
- <nav role="navigation">
28
- <div id="project-navigation">
29
- <div id="home-section" role="region" title="Quick navigation" class="nav-section">
30
- <h2>
31
- <a href="./index.html" rel="home">Home</a>
32
- </h2>
33
-
34
- <div id="table-of-contents-navigation">
35
- <a href="./table_of_contents.html#pages">Pages</a>
36
- <a href="./table_of_contents.html#classes">Classes</a>
37
- <a href="./table_of_contents.html#methods">Methods</a>
38
- </div>
39
- </div>
40
-
41
- <div id="search-section" role="search" class="project-section initially-hidden">
42
- <form action="#" method="get" accept-charset="utf-8">
43
- <div id="search-field-wrapper">
44
- <input id="search-field" role="combobox" aria-label="Search"
45
- aria-autocomplete="list" aria-controls="search-results"
46
- type="text" name="search" placeholder="Search" spellcheck="false"
47
- title="Type to search, Up and Down to navigate, Enter to load">
48
- </div>
49
-
50
- <ul id="search-results" aria-label="Search Results"
51
- aria-busy="false" aria-expanded="false"
52
- aria-atomic="false" class="initially-hidden"></ul>
53
- </form>
54
- </div>
55
-
56
- </div>
57
-
58
-
59
- <div class="nav-section">
60
- <h3>Table of Contents</h3>
61
-
62
- <ul class="link-list" role="directory">
63
- <li><a href="#label-Gravaty+Issues">Gravaty Issues</a>
64
- <li><a href="#label-Documentation">Documentation</a>
65
- <li><a href="#label-Known+Bugs">Known Bugs</a>
66
- <li><a href="#label-Reporting+Unresolved+Problems">Reporting Unresolved Problems</a>
67
- </ul>
68
- </div>
69
-
70
-
71
- <div id="project-metadata">
72
- <div id="fileindex-section" class="nav-section">
73
- <h3>Pages</h3>
74
-
75
- <ul class="link-list">
76
-
77
- <li><a href="./CHANGELOG.html">CHANGELOG</a>
78
-
79
- <li><a href="./COPYING_md.html">COPYING</a>
80
-
81
- <li><a href="./Gemfile.html">Gemfile</a>
82
-
83
- <li><a href="./ISSUES_md.html">ISSUES</a>
84
-
85
- <li><a href="./README_md.html">README</a>
86
-
87
- <li><a href="./Rakefile.html">Rakefile</a>
88
-
89
- <li><a href="./acknowledgements_md.html">acknowledgements</a>
90
-
91
- <li><a href="./authors_md.html">authors</a>
92
-
93
- <li><a href="./copyright_md.html">copyright</a>
94
-
95
- <li><a href="./examples/cacert_pem.html">cacert.pem</a>
96
-
97
- </ul>
98
- </div>
99
-
100
- </div>
101
- </nav>
102
-
103
- <main role="main" aria-label="Page ISSUES.md">
104
- <!--
105
- gravaty
106
-
107
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
108
-
109
- This file is part of gravaty.
110
-
111
- gravaty is free software: you can redistribute it and/or modify it under
112
- the terms of the GNU General Public License as published by the Free
113
- Software Foundation, either version 3 of the License, or (at your
114
- option) any later version.
115
-
116
- gravaty is distributed in the hope that it will be useful, but WITHOUT
117
- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
118
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
119
- more details.
120
-
121
- You should have received a copy of the GNU General Public License along
122
- with gravaty. If not, see <http://www.gnu.org/licenses/>.
123
- -->
124
- <h1 id="label-Gravaty+Issues"><a href="Gravaty.html"><code>Gravaty</code></a> Issues<span><a href="#label-Gravaty+Issues">&para;</a> <a href="#top">&uarr;</a></span></h1>
125
-
126
- <h2 id="label-Documentation">Documentation<span><a href="#label-Documentation">&para;</a> <a href="#top">&uarr;</a></span></h2>
127
-
128
- <p>See <a href="https://savannah.nongnu.org/projects/gravaty">savannah.nongnu.org/projects/gravaty</a>/ or <a href="http://rubydoc.info/gems/gravaty">rubydoc.info/gems/gravaty</a>/ for latest information.</p>
129
-
130
- <h2 id="label-Known+Bugs">Known Bugs<span><a href="#label-Known+Bugs">&para;</a> <a href="#top">&uarr;</a></span></h2>
131
- <table border="1">
132
- <thead><tr><th>Bug</th><th>Level</th><th>Description</th><th>Other
133
- Info</th></tr></thead>
134
- <tbody><tr><td><a href="https://savannah.nongnu.org/bugs/?39928">
135
- 39928</a></td><td>important</td><td>Matches of 'Joe Q. Public
136
- <john.q.public@example.com>' invalid email</td><td><a
137
- href="https://freedomsponsors.org/issue/335/matches-of-joe-q-public-johnqpublicexamplecom-invalid-email">Sponsor
138
- this issue</a></td></tr></tbody>
139
- </table>
140
- <h2 id="label-Reporting+Unresolved+Problems">Reporting Unresolved Problems<span><a href="#label-Reporting+Unresolved+Problems">&para;</a> <a href="#top">&uarr;</a></span></h2>
141
-
142
- <p>See <a href="https://savannah.nongnu.org/bugs/?group=gravaty">savannah.nongnu.org/bugs/?group=gravaty</a> and the submit page <a href="https://savannah.nongnu.org/bugs/?func=additem&group=gravaty">savannah.nongnu.org/bugs/?func=additem&group=gravaty</a> on Savannah.NonGNU server.</p>
143
- <hr>
144
-
145
- <p>gravaty</p>
146
-
147
- <p>Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
148
-
149
- <p>This file is part of gravaty.</p>
150
-
151
- <p>gravaty 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.</p>
152
-
153
- <p>gravaty 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.</p>
154
-
155
- <p>You should have received a copy of the GNU General Public License along with gravaty. If not, see <a href="http://www.gnu.org/licenses">www.gnu.org/licenses</a>/.</p>
156
-
157
- </main>
158
-
159
-
160
-
161
- <footer id="validator-badges" role="contentinfo">
162
- <p><a href="https://validator.w3.org/check/referer">Validate</a>
163
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
164
- <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
165
- </footer>
166
-
@@ -1,161 +0,0 @@
1
- <!DOCTYPE html>
2
-
3
- <html>
4
- <head>
5
- <meta charset="UTF-8">
6
-
7
- <title>acknowledgements - gravaty 10.0.0</title>
8
-
9
- <script type="text/javascript">
10
- var rdoc_rel_prefix = "./";
11
- var index_rel_prefix = "./";
12
- </script>
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>
19
-
20
- <link href="./css/fonts.css" rel="stylesheet">
21
- <link href="./css/rdoc.css" rel="stylesheet">
22
-
23
-
24
-
25
-
26
- <body id="top" role="document" class="file">
27
- <nav role="navigation">
28
- <div id="project-navigation">
29
- <div id="home-section" role="region" title="Quick navigation" class="nav-section">
30
- <h2>
31
- <a href="./index.html" rel="home">Home</a>
32
- </h2>
33
-
34
- <div id="table-of-contents-navigation">
35
- <a href="./table_of_contents.html#pages">Pages</a>
36
- <a href="./table_of_contents.html#classes">Classes</a>
37
- <a href="./table_of_contents.html#methods">Methods</a>
38
- </div>
39
- </div>
40
-
41
- <div id="search-section" role="search" class="project-section initially-hidden">
42
- <form action="#" method="get" accept-charset="utf-8">
43
- <div id="search-field-wrapper">
44
- <input id="search-field" role="combobox" aria-label="Search"
45
- aria-autocomplete="list" aria-controls="search-results"
46
- type="text" name="search" placeholder="Search" spellcheck="false"
47
- title="Type to search, Up and Down to navigate, Enter to load">
48
- </div>
49
-
50
- <ul id="search-results" aria-label="Search Results"
51
- aria-busy="false" aria-expanded="false"
52
- aria-atomic="false" class="initially-hidden"></ul>
53
- </form>
54
- </div>
55
-
56
- </div>
57
-
58
-
59
- <div class="nav-section">
60
- <h3>Table of Contents</h3>
61
-
62
- <ul class="link-list" role="directory">
63
- <li><a href="#label-Acknowledgements">Acknowledgements</a>
64
- <li><a href="#label-RFC+5322+Email+Validation+Regex+in+Ruby+Regular+Expressions">RFC 5322 Email Validation Regex in Ruby Regular Expressions</a>
65
- <li><a href="#label-An+HTTP-2FHTTPS-2FFTP+file+downloader+library-2FCLI+based+upon+MiniPortile-27s+HTTP+implementation.">An HTTP/HTTPS/FTP file downloader library/CLI based upon MiniPortile&#39;s HTTP implementation.</a>
66
- </ul>
67
- </div>
68
-
69
-
70
- <div id="project-metadata">
71
- <div id="fileindex-section" class="nav-section">
72
- <h3>Pages</h3>
73
-
74
- <ul class="link-list">
75
-
76
- <li><a href="./CHANGELOG.html">CHANGELOG</a>
77
-
78
- <li><a href="./COPYING_md.html">COPYING</a>
79
-
80
- <li><a href="./Gemfile.html">Gemfile</a>
81
-
82
- <li><a href="./ISSUES_md.html">ISSUES</a>
83
-
84
- <li><a href="./README_md.html">README</a>
85
-
86
- <li><a href="./Rakefile.html">Rakefile</a>
87
-
88
- <li><a href="./acknowledgements_md.html">acknowledgements</a>
89
-
90
- <li><a href="./authors_md.html">authors</a>
91
-
92
- <li><a href="./copyright_md.html">copyright</a>
93
-
94
- <li><a href="./examples/cacert_pem.html">cacert.pem</a>
95
-
96
- </ul>
97
- </div>
98
-
99
- </div>
100
- </nav>
101
-
102
- <main role="main" aria-label="Page acknowledgements.md">
103
- <!--
104
- gravaty
105
-
106
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
107
-
108
- This file is part of gravaty.
109
-
110
- gravaty is free software: you can redistribute it and/or modify it under
111
- the terms of the GNU General Public License as published by the Free
112
- Software Foundation, either version 3 of the License, or (at your
113
- option) any later version.
114
-
115
- gravaty is distributed in the hope that it will be useful, but WITHOUT
116
- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
117
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
118
- more details.
119
-
120
- You should have received a copy of the GNU General Public License along
121
- with gravaty. If not, see <http://www.gnu.org/licenses/>.
122
- -->
123
- <h1 id="label-Acknowledgements">Acknowledgements<span><a href="#label-Acknowledgements">&para;</a> <a href="#top">&uarr;</a></span></h1>
124
-
125
- <p>FSIJ理事会の理事長、新部裕さんの日本語の翻訳。 Japanese translation by Yutaka Niibe, President of Free Software Initiative of Japan.</p>
126
-
127
- <p>Thanks to Łukasz Niemier for his suggestions on possible improvements.</p>
128
-
129
- <h2 id="label-RFC+5322+Email+Validation+Regex+in+Ruby+Regular+Expressions">RFC 5322 Email Validation Regex in Ruby Regular Expressions<span><a href="#label-RFC+5322+Email+Validation+Regex+in+Ruby+Regular+Expressions">&para;</a> <a href="#top">&uarr;</a></span></h2>
130
-
131
- <p>Thanks to <a href="https://za.linkedin.com/in/marcheiligers/">Marc Heiligers</a> for the note about Peter R. Marreck&#39;s gist.</p>
132
-
133
- <p><a href="https://gist.github.com/pmarreck/4626713">RFC 5322 Email Validation Regex in Ruby Regular Expressions</a> gist by Peter R. Marreck. About <em>RFC 5322 Email Validation Regex in Ruby Regular Expressions</em>, please note that “This work is released under the BSD 3-Clause License”. This license is GNU GPLv3 compatible according to <a href="http://www.gnu.org/licenses/license-list.en.html#ModifiedBSD">www.gnu.org/licenses/license-list.en.html#ModifiedBSD</a>.</p>
134
-
135
- <h2 id="label-An+HTTP-2FHTTPS-2FFTP+file+downloader+library-2FCLI+based+upon+MiniPortile-27s+HTTP+implementation.">An HTTP/HTTPS/FTP file downloader library/CLI based upon MiniPortile&#39;s HTTP implementation.<span><a href="#label-An+HTTP-2FHTTPS-2FFTP+file+downloader+library-2FCLI+based+upon+MiniPortile-27s+HTTP+implementation.">&para;</a> <a href="#top">&uarr;</a></span></h2>
136
-
137
- <p><a href="https://gist.github.com/jonforums/2202048">An HTTP/HTTPS/FTP file downloader library/CLI based upon MiniPortile’s HTTP implementation.</a> gist by Jon Maken. About <em>An HTTP/HTTPS/FTP file downloader library/CLI based upon MiniPortile&#39;s HTTP implementation</em>, please note that “License: 3-clause BSD”. This license is GNU GPLv3 compatible according to <a href="http://www.gnu.org/licenses/license-list.en.html#ModifiedBSD">www.gnu.org/licenses/license-list.en.html#ModifiedBSD</a>.</p>
138
- <hr>
139
-
140
- <p>gravaty</p>
141
-
142
- <p>Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
143
-
144
- <p>This file is part of gravaty.</p>
145
-
146
- <p>gravaty 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.</p>
147
-
148
- <p>gravaty 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.</p>
149
-
150
- <p>You should have received a copy of the GNU General Public License along with gravaty. If not, see <a href="http://www.gnu.org/licenses">www.gnu.org/licenses</a>/.</p>
151
-
152
- </main>
153
-
154
-
155
-
156
- <footer id="validator-badges" role="contentinfo">
157
- <p><a href="https://validator.w3.org/check/referer">Validate</a>
158
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
159
- <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
160
- </footer>
161
-
data/html/authors_md.html DELETED
@@ -1,174 +0,0 @@
1
- <!DOCTYPE html>
2
-
3
- <html>
4
- <head>
5
- <meta charset="UTF-8">
6
-
7
- <title>authors - gravaty 10.0.0</title>
8
-
9
- <script type="text/javascript">
10
- var rdoc_rel_prefix = "./";
11
- var index_rel_prefix = "./";
12
- </script>
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>
19
-
20
- <link href="./css/fonts.css" rel="stylesheet">
21
- <link href="./css/rdoc.css" rel="stylesheet">
22
-
23
-
24
-
25
-
26
- <body id="top" role="document" class="file">
27
- <nav role="navigation">
28
- <div id="project-navigation">
29
- <div id="home-section" role="region" title="Quick navigation" class="nav-section">
30
- <h2>
31
- <a href="./index.html" rel="home">Home</a>
32
- </h2>
33
-
34
- <div id="table-of-contents-navigation">
35
- <a href="./table_of_contents.html#pages">Pages</a>
36
- <a href="./table_of_contents.html#classes">Classes</a>
37
- <a href="./table_of_contents.html#methods">Methods</a>
38
- </div>
39
- </div>
40
-
41
- <div id="search-section" role="search" class="project-section initially-hidden">
42
- <form action="#" method="get" accept-charset="utf-8">
43
- <div id="search-field-wrapper">
44
- <input id="search-field" role="combobox" aria-label="Search"
45
- aria-autocomplete="list" aria-controls="search-results"
46
- type="text" name="search" placeholder="Search" spellcheck="false"
47
- title="Type to search, Up and Down to navigate, Enter to load">
48
- </div>
49
-
50
- <ul id="search-results" aria-label="Search Results"
51
- aria-busy="false" aria-expanded="false"
52
- aria-atomic="false" class="initially-hidden"></ul>
53
- </form>
54
- </div>
55
-
56
- </div>
57
-
58
-
59
- <div class="nav-section">
60
- <h3>Table of Contents</h3>
61
-
62
- <ul class="link-list" role="directory">
63
- <li><a href="#label-Project+and+gem+owned+by">Project and gem owned by</a>
64
- <li><a href="#label-Authors+list+-28in+appearing+order-29">Authors list (in appearing order)</a>
65
- <li><a href="#label-Translations+Authors+-28in+appearing+order-29">Translations Authors (in appearing order)</a>
66
- </ul>
67
- </div>
68
-
69
-
70
- <div id="project-metadata">
71
- <div id="fileindex-section" class="nav-section">
72
- <h3>Pages</h3>
73
-
74
- <ul class="link-list">
75
-
76
- <li><a href="./CHANGELOG.html">CHANGELOG</a>
77
-
78
- <li><a href="./COPYING_md.html">COPYING</a>
79
-
80
- <li><a href="./Gemfile.html">Gemfile</a>
81
-
82
- <li><a href="./ISSUES_md.html">ISSUES</a>
83
-
84
- <li><a href="./README_md.html">README</a>
85
-
86
- <li><a href="./Rakefile.html">Rakefile</a>
87
-
88
- <li><a href="./acknowledgements_md.html">acknowledgements</a>
89
-
90
- <li><a href="./authors_md.html">authors</a>
91
-
92
- <li><a href="./copyright_md.html">copyright</a>
93
-
94
- <li><a href="./examples/cacert_pem.html">cacert.pem</a>
95
-
96
- </ul>
97
- </div>
98
-
99
- </div>
100
- </nav>
101
-
102
- <main role="main" aria-label="Page authors.md">
103
- <!--
104
- gravaty
105
-
106
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
107
-
108
- This file is part of gravaty.
109
-
110
- gravaty is free software: you can redistribute it and/or modify it under
111
- the terms of the GNU General Public License as published by the Free
112
- Software Foundation, either version 3 of the License, or (at your
113
- option) any later version.
114
-
115
- gravaty is distributed in the hope that it will be useful, but WITHOUT
116
- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
117
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
118
- more details.
119
-
120
- You should have received a copy of the GNU General Public License along
121
- with gravaty. If not, see <http://www.gnu.org/licenses/>.
122
- -->
123
- <h1 id="label-Project+and+gem+owned+by">Project and gem owned by<span><a href="#label-Project+and+gem+owned+by">&para;</a> <a href="#top">&uarr;</a></span></h1>
124
- <ul><li>
125
- <p><em>Author</em>: <a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
126
- </li></ul>
127
-
128
- <h1 id="label-Authors+list+-28in+appearing+order-29">Authors list (in appearing order)<span><a href="#label-Authors+list+-28in+appearing+order-29">&para;</a> <a href="#top">&uarr;</a></span></h1>
129
- <ul><li>
130
- <p><em>Author</em>: <a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
131
- </li><li>
132
- <p><em>Contributor</em>: <a href="https://za.linkedin.com/in/marcheiligers/">Marc Heiligers</a></p>
133
- </li><li>
134
- <p><em>Author</em>: <a href="mailto:lumbergh@gmail.com">Peter R. Marreck</a>, <a href="https://gist.github.com/pmarreck/4626713">RFC 5322 Email Validation Regex in Ruby Regular Expressions</a></p>
135
- </li><li>
136
- <p><em>Author</em>: <a href="mailto:jon.forums@gmail.com">Jon Maken</a>, <a href="https://gist.github.com/jonforums/2202048">An HTTP/HTTPS/FTP file downloader library/CLI based upon MiniPortile’s HTTP implementation.</a></p>
137
- </li><li>
138
- <p><em>Contributor</em>: <a href="http://lukasz.niemier.pl/">Łukasz Niemier</a></p>
139
- </li></ul>
140
-
141
- <h2 id="label-Translations+Authors+-28in+appearing+order-29">Translations Authors (in appearing order)<span><a href="#label-Translations+Authors+-28in+appearing+order-29">&para;</a> <a href="#top">&uarr;</a></span></h2>
142
- <ul><li>
143
- <p><em>Italiano</em>: <a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
144
- </li><li>
145
- <p><em>English</em>: [Marco Bresciani][<a href="mailto:marcobresciani_1974@libero.it">marcobresciani_1974@libero.it</a>)</p>
146
- </li><li>
147
- <p><em>日本語</em>: <a href="mailto:gniibe@fsij.org">新部裕</a></p>
148
- </li></ul>
149
-
150
- <p>No one else, yet.</p>
151
- <hr>
152
-
153
- <p>gravaty</p>
154
-
155
- <p>Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
156
-
157
- <p>This file is part of gravaty.</p>
158
-
159
- <p>gravaty 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.</p>
160
-
161
- <p>gravaty 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.</p>
162
-
163
- <p>You should have received a copy of the GNU General Public License along with gravaty. If not, see <a href="http://www.gnu.org/licenses">www.gnu.org/licenses</a>/.</p>
164
-
165
- </main>
166
-
167
-
168
-
169
- <footer id="validator-badges" role="contentinfo">
170
- <p><a href="https://validator.w3.org/check/referer">Validate</a>
171
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
172
- <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
173
- </footer>
174
-