gravaty 9.0.1 → 10.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (103) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +10 -0
  3. data/Gemfile +1 -1
  4. data/ISSUES.md +2 -2
  5. data/README.md +119 -105
  6. data/Rakefile +1 -1
  7. data/acknowledgements.md +2 -2
  8. data/authors.md +2 -2
  9. data/copyright.md +4 -4
  10. data/examples/avatar.rb +1 -1
  11. data/examples/basics.rb +1 -1
  12. data/examples/cacert.pem +142 -77
  13. data/examples/profile.rb +1 -1
  14. data/examples/xmlrpc.rb +3 -3
  15. data/gravaty.gemspec +9 -9
  16. data/html/CHANGELOG.html +19 -6
  17. data/html/COPYING_md.html +7 -6
  18. data/html/Gemfile.html +8 -7
  19. data/html/Gravaty.html +12 -12
  20. data/html/Gravaty/Gravaty.html +121 -121
  21. data/html/Gravaty/ParsableDuckType.html +8 -5
  22. data/html/Gravaty/Parser.html +21 -21
  23. data/html/Gravaty/Parsers.html +7 -4
  24. data/html/Gravaty/Parsers/Avatar.html +12 -12
  25. data/html/Gravaty/Parsers/Callback.html +13 -13
  26. data/html/Gravaty/Parsers/Default.html +21 -21
  27. data/html/Gravaty/Parsers/Force.html +13 -13
  28. data/html/Gravaty/Parsers/Format.html +13 -13
  29. data/html/Gravaty/Parsers/Pixelsize.html +13 -13
  30. data/html/Gravaty/Parsers/Rating.html +13 -13
  31. data/html/Gravaty/Parsers/Secure.html +12 -12
  32. data/html/Gravaty/Parsers/Type.html +13 -13
  33. data/html/Gravaty/Utils.html +9 -9
  34. data/html/Gravaty/Utils/Downloader.html +7 -4
  35. data/html/Gravaty/Utils/Downloader/Downloader.html +7 -4
  36. data/html/Gravaty/Utils/Raisers.html +21 -21
  37. data/html/Gravaty/Utils/Rfc5322.html +7 -4
  38. data/html/Gravaty/Utils/RpcConnector.html +9 -9
  39. data/html/Gravaty/Utils/RpcConnector/RpcConnector.html +29 -26
  40. data/html/ISSUES_md.html +9 -8
  41. data/html/Object.html +17 -4
  42. data/html/README_md.html +18 -18
  43. data/html/Rakefile.html +9 -8
  44. data/html/acknowledgements_md.html +9 -8
  45. data/html/authors_md.html +9 -8
  46. data/html/copyright_md.html +226 -202
  47. data/html/created.rid +55 -56
  48. data/html/css/rdoc.css +35 -6
  49. data/html/examples/cacert_pem.html +47 -25
  50. data/html/index.html +18 -18
  51. data/html/js/darkfish.js +22 -99
  52. data/html/js/navigation.js +4 -40
  53. data/html/js/navigation.js.gz +0 -0
  54. data/html/js/search.js +32 -31
  55. data/html/js/search_index.js +1 -1
  56. data/html/js/search_index.js.gz +0 -0
  57. data/html/js/searcher.js +6 -6
  58. data/html/js/searcher.js.gz +0 -0
  59. data/html/table_of_contents.html +16 -10
  60. data/lib/gravaty.rb +4 -3
  61. data/lib/gravaty/application.rb +4 -5
  62. data/lib/gravaty/constants.rb +1 -1
  63. data/lib/gravaty/locales/en.yml +1 -1
  64. data/lib/gravaty/locales/it.yml +1 -1
  65. data/lib/gravaty/locales/ja.yml +1 -1
  66. data/lib/gravaty/parser.rb +2 -3
  67. data/lib/gravaty/parsers/avatar.rb +2 -3
  68. data/lib/gravaty/parsers/callback.rb +2 -3
  69. data/lib/gravaty/parsers/default.rb +4 -5
  70. data/lib/gravaty/parsers/force.rb +2 -3
  71. data/lib/gravaty/parsers/format.rb +2 -3
  72. data/lib/gravaty/parsers/pixelsize.rb +2 -3
  73. data/lib/gravaty/parsers/rating.rb +2 -3
  74. data/lib/gravaty/parsers/secure.rb +2 -3
  75. data/lib/gravaty/parsers/type.rb +2 -3
  76. data/lib/gravaty/utils/downloader.rb +4 -4
  77. data/lib/gravaty/utils/raisers.rb +3 -5
  78. data/lib/gravaty/utils/rfc5322.rb +1 -1
  79. data/lib/gravaty/utils/rpc_connector.rb +2 -3
  80. data/lib/gravaty/version.rb +2 -2
  81. data/test/gravaty/locales/test_locales.rb +11 -11
  82. data/test/gravaty/parsers/test_avatar.rb +3 -3
  83. data/test/gravaty/parsers/test_callback.rb +3 -3
  84. data/test/gravaty/parsers/test_default.rb +10 -10
  85. data/test/gravaty/parsers/test_force.rb +3 -3
  86. data/test/gravaty/parsers/test_format.rb +6 -6
  87. data/test/gravaty/parsers/test_pixelsize.rb +7 -7
  88. data/test/gravaty/parsers/test_rating.rb +6 -6
  89. data/test/gravaty/parsers/test_secure.rb +3 -3
  90. data/test/gravaty/parsers/test_type.rb +3 -3
  91. data/test/gravaty/test_application.rb +22 -38
  92. data/test/gravaty/test_avatar.rb +15 -29
  93. data/test/gravaty/test_parser.rb +5 -5
  94. data/test/gravaty/test_profile.rb +11 -15
  95. data/test/gravaty/utils/test_downloader.rb +38 -14
  96. data/test/gravaty/utils/test_raisers.rb +5 -6
  97. data/test/gravaty/utils/test_rfc5322.rb +4 -4
  98. data/test/gravaty/utils/test_rpc_connector.rb +10 -13
  99. data/test/test_gravaty.rb +5 -9
  100. data/test/test_helper.rb +1 -1
  101. metadata +26 -28
  102. data/html/gravaty_gemspec.html +0 -169
  103. data/html/js/jquery.js +0 -4
@@ -4,15 +4,18 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>ISSUES - gravaty 9.0.1</title>
7
+ <title>ISSUES - gravaty 10.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/jquery.js"></script>
15
- <script src="./js/darkfish.js"></script>
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">
@@ -91,8 +94,6 @@
91
94
 
92
95
  <li><a href="./examples/cacert_pem.html">cacert.pem</a>
93
96
 
94
- <li><a href="./gravaty_gemspec.html">gravaty.gemspec</a>
95
-
96
97
  </ul>
97
98
  </div>
98
99
 
@@ -103,7 +104,7 @@
103
104
  <!--
104
105
  gravaty
105
106
 
106
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
107
+ Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
107
108
 
108
109
  This file is part of gravaty.
109
110
 
@@ -143,7 +144,7 @@ with gravaty. If not, see <http://www.gnu.org/licenses/>.
143
144
 
144
145
  <p>gravaty</p>
145
146
 
146
- <p>Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
147
+ <p>Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
147
148
 
148
149
  <p>This file is part of gravaty.</p>
149
150
 
@@ -159,7 +160,7 @@ with gravaty. If not, see <http://www.gnu.org/licenses/>.
159
160
 
160
161
  <footer id="validator-badges" role="contentinfo">
161
162
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
162
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
163
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
163
164
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
164
165
  </footer>
165
166
 
@@ -4,15 +4,18 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>class Object - gravaty 9.0.1</title>
7
+ <title>class Object - gravaty 10.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/jquery.js"></script>
15
- <script src="./js/darkfish.js"></script>
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">
@@ -117,6 +120,16 @@
117
120
  </header>
118
121
  <dl>
119
122
 
123
+ <dt id="DESTINATION_FILE">DESTINATION_FILE
124
+
125
+ <dd>
126
+
127
+
128
+ <dt id="OLD_CERT">OLD_CERT
129
+
130
+ <dd>
131
+
132
+
120
133
  <dt id="RELATIVE_PATH">RELATIVE_PATH
121
134
 
122
135
  <dd>
@@ -181,7 +194,7 @@
181
194
 
182
195
  <footer id="validator-badges" role="contentinfo">
183
196
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
184
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
197
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
185
198
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
186
199
  </footer>
187
200
 
@@ -4,15 +4,18 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>README - gravaty 9.0.1</title>
7
+ <title>README - gravaty 10.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/jquery.js"></script>
15
- <script src="./js/darkfish.js"></script>
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">
@@ -101,8 +104,6 @@
101
104
 
102
105
  <li><a href="./examples/cacert_pem.html">cacert.pem</a>
103
106
 
104
- <li><a href="./gravaty_gemspec.html">gravaty.gemspec</a>
105
-
106
107
  </ul>
107
108
  </div>
108
109
 
@@ -113,7 +114,7 @@
113
114
  <!--
114
115
  gravaty
115
116
 
116
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
117
+ Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
117
118
 
118
119
  This file is part of gravaty.
119
120
 
@@ -134,7 +135,7 @@ with gravaty. If not, see <http://www.gnu.org/licenses/>.
134
135
 
135
136
  <p><img src="https://img.shields.io/gem/v/gravaty.svg?style=plastic"> <img src="https://img.shields.io/gem/dt/gravaty.svg?style=plastic"> <img src="https://img.shields.io/gem/dtv/gravaty.svg?style=plastic"> <img src="https://img.shields.io/gem/rt/gravaty.svg?style=plastic"> <img src="https://img.shields.io/gem/rd/gravaty.svg?style=plastic"> <img src="https://img.shields.io/librariesio/dependent-repos/rubygems/gravaty.svg?style=plastic"></p>
136
137
 
137
- <p>Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
138
+ <p>Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
138
139
 
139
140
  <p>This file is part of gravaty.</p>
140
141
 
@@ -152,7 +153,9 @@ with gravaty. If not, see <http://www.gnu.org/licenses/>.
152
153
 
153
154
  <p>GNU GPLv3 license; source code available through anonymous checkout: <code>hg clone http://hg.savannah.nongnu.org/hgweb/gravaty/</code> or write me and I&#39;ll send it.</p>
154
155
 
155
- <p>You can even decide to contribute to this little free software project by registering to Savannah and ask to be part of the &#39;gravaty&#39; project! With contributions from: 新部裕, Peter R. Marreck, Jon Maken, Łukasz Niemier.</p>
156
+ <p>You can even decide to contribute to this little free software project by registering to Savannah and ask to be part of the &#39;gravaty&#39; project!</p>
157
+
158
+ <p>With great contributions from: 新部裕, Peter R. Marreck, Jon Maken, Łukasz Niemier.</p>
156
159
 
157
160
  <h2 id="label-Documentation">Documentation<span><a href="#label-Documentation">&para;</a> <a href="#top">&uarr;</a></span></h2>
158
161
 
@@ -168,7 +171,7 @@ with gravaty. If not, see <http://www.gnu.org/licenses/>.
168
171
 
169
172
  <h3 id="label-Supported+Ruby+Versions+and+Implementations">Supported Ruby Versions and Implementations<span><a href="#label-Supported+Ruby+Versions+and+Implementations">&para;</a> <a href="#top">&uarr;</a></span></h3>
170
173
 
171
- <p>Because <a href="Gravaty.html"><code>Gravaty</code></a> is pure Ruby, it should run pretty much anywhere, including Rubinius, JRuby, MacRuby, etc. Officially the support is for &gt;= 2.6 YARV/KRI.</p>
174
+ <p>Because <a href="Gravaty.html"><code>Gravaty</code></a> is pure Ruby, it should run pretty much anywhere, including Rubinius, JRuby, MacRuby, etc. Officially the support is for &gt;= 2.7 YARV/KRI.</p>
172
175
 
173
176
  <h3 id="label-Support">Support<span><a href="#label-Support">&para;</a> <a href="#top">&uarr;</a></span></h3>
174
177
 
@@ -229,11 +232,11 @@ with gravaty. If not, see <http://www.gnu.org/licenses/>.
229
232
 
230
233
  <h3 id="label-Usage+Examples">Usage Examples<span><a href="#label-Usage+Examples">&para;</a> <a href="#top">&uarr;</a></span></h3>
231
234
 
232
- <p>See <code>examples</code> folder. To run the examples just type go into the <code>examples</code> directory and run <code>ruby</code>{EXAMPLE_NAME}<code>.rb</code>. Running the examples you&#39;ll see both the example description and correct code usage to perform such action. Here below are listed the currently available examples: * The <code>basics.rb</code> example (run <code>ruby basics.rb</code>) shows how to initialize and use a <a href="Gravaty.html"><code>Gravaty</code></a> object through the <code>gravatize</code> factory method; * The <code>avatar.rb</code> example (run <code>ruby avatar.rb</code>) shows how to ask for an avatar image through Gravatar (free) service, with all available options and configurations. It will also show how to download such images; * The <code>profile.rb</code> example (run <code>ruby profile.rb</code>) shows how to ask for profile data through Gravatar (free) service, with all available options and configurations. It will also show how to download such data. * The <code>xmlrpc.rb</code> example (run <code>ruby xmlrpc.rb</code>) shows how to use the XML-RPC API through Gravatar (free) service, with all available options and configurations. This need a valid username and password to type x work properly.</p>
235
+ <p>See <code>examples</code> folder. To run the examples just type go into the <code>examples</code> directory and run <code>ruby</code>{EXAMPLE_NAME}<code>.rb</code>. Running the examples you&#39;ll see both the example description and correct code usage to perform such action. Here below are listed the currently available examples: * The <code>basics.rb</code> example (run <code>ruby basics.rb</code>) shows how to initialize and use a <a href="Gravaty.html"><code>Gravaty</code></a> object through the <code>gravatize</code> factory method; * The <code>avatar.rb</code> example (run <code>ruby avatar.rb</code>) shows how to ask for an avatar image through Gravatar (free) service, with all available options and configurations. It will also show how to download such images; * The <code>profile.rb</code> example (run <code>ruby profile.rb</code>) shows how to ask for profile data through Gravatar (free) service, with all available options and configurations. It will also show how to download such data. * The <code>xmlrpc.rb</code> example (run <code>ruby xmlrpc.rb</code>) shows how to use the XML-RPC API through Gravatar (free) service, with all available options and configurations. This need a valid username and password to work properly.</p>
233
236
 
234
237
  <h2 id="label-Gravatar+Terms+of+Service">Gravatar Terms of Service<span><a href="#label-Gravatar+Terms+of+Service">&para;</a> <a href="#top">&uarr;</a></span></h2>
235
238
 
236
- <p><em>Here follows the unmodified 2019-02-21 11.07 CET version of Gravatar site terms of service, titled “Gravatar Terms of Use”. For the most updated version, please refer to <a href="https://secure.gravatar.com/site/terms-of-service">secure.gravatar.com/site/terms-of-service</a> in order to know how to properly use computer gravatars.</em></p>
239
+ <p><em>Here follows the unmodified 2020-03-12 09:22 CEST version of Gravatar site terms of service, titled “Gravatar Terms of Use”. For the most updated version, please refer to <a href="https://secure.gravatar.com/site/terms-of-service">secure.gravatar.com/site/terms-of-service</a> in order to know how to properly use computer gravatars.</em></p>
237
240
 
238
241
  <p>Gravatar Terms of Use</p>
239
242
 
@@ -243,18 +246,15 @@ with gravaty. If not, see <http://www.gnu.org/licenses/>.
243
246
 
244
247
  <p>Automattic may update the Gravatar Terms from time to time. Your continued use of the Services following notification of such updates constitutes your acceptance of those changes.</p>
245
248
  <ol><li>
246
- <p>User Submissions. The Services may provide you with the ability to create, upload, distribute or post (“Submit(ting)”) data, photographs, avatars, software, graphics, profile and other information to the Services (collectively, the “User Submissions”). By Submitting User Submissions, you acknowledge that you are publishing that User Submission, and that you may be identified publicly by your avatar and other User Submissions (e.g., in connection with your blogs, comments and/or email address) by Automattic, third party Gravatar-enabled websites (as that term in defined below), and others. More specifically, you hereby do and shall grant to Automattic a worldwide, perpetual, irrevocable, royalty-free and fully-paid, transferable (including rights to sublicense) right to perform the Services (e.g., to use, modify, reproduce, distribute, prepare derivative works of, display, perform, and otherwise fully exercise and exploit all intellectual property, publicity, and moral rights with respect to any User Submissions, and to allow others to do so).</p>
249
+ <p>User Submissions. The Services may provide you with the ability to create, upload, distribute or post (“Submit(ting)”) data, photographs, avatars, software, graphics, profile and other information to the Services (collectively, the “User Submissions”). By Submitting User Submissions, you acknowledge that you are publishing that User Submission, and that you may be identified publicly by your avatar and other User Submissions (e.g., in connection with your blogs, comments and/or email address) by Automattic, third party Gravatar-enabled websites (as that term in defined below), and others. More specifically, you hereby do and shall grant to Automattic a worldwide, perpetual, irrevocable, royalty-free and fully-paid, transferable (including rights to sublicense) right to perform the Services (e.g., to use, modify, reproduce, distribute, prepare derivative works of, display, perform, and otherwise fully exercise and exploit all intellectual property, publicity, and moral rights with respect to any User Submissions, and to allow others to do so).</p>
247
250
  </li></ol>
248
251
 
249
- <p>By Submitting, you agree to be solely responsible for the User Submissions and release Automattic from any liability related to your use of the Services. You warrant, represent and agree that you will not Submit any User Submissions or otherwise use the Services in a manner that (i) infringes the intellectual property or proprietary rights, or rights of publicity or privacy, of any third party; (ii) violates any law, statute, ordinance or regulation; or (iii) is harmful, threatening, abusive, harassing, tortuous, defamatory, vulgar, obscene, libelous, or otherwise objectionable. You understand that Automattic shall not be responsible or liable for controlling or editing any User Submission, for any errors or omissions in any User Submission, for any damage or loss caused or alleged to be caused by or in connection with the use of or reliance on any User Submission; nor can Automattic ensure prompt removal of inappropriate or unlawful content or guarantee the identity of any other users or websites with whom you may interact in the course of using the Services.</p>
250
- <ol><li>
251
- <p>Use of the Services by Third Party Websites. Third party websites may enable the use of the Services on their respective websites as expressly authorized by Automattic (e.g., API calls into Gravatar: <a href="http://en.gravatar.com/site/implement">en.gravatar.com/site/implement</a>); provided that they (i) do not copy, store or modify User Submissions; (ii) do not distribute, display, perform, use or otherwise exercise or exploit any User Submission or other user information for any purpose other than as necessary to perform the Services for the applicable user; (iii) have a privacy policy in effect and posted on such website that complies with all applicable laws and regulations and that notifies such user that it will only use personally identifiable information as set forth in (ii) above; and (iv) agree to be bound by and comply with all the terms, conditions, and limitations set forth in the Terms of Service (“Gravatar-enabled website”).</p>
252
- </li></ol>
252
+ <p>By Submitting, you agree to be solely responsible for the User Submissions and release Automattic from any liability related to your use of the Services. You warrant, represent and agree that you will not Submit any User Submissions or otherwise use the Services in a manner that (i) infringes the intellectual property or proprietary rights, or rights of publicity or privacy, of any third party; (ii) violates any law, statute, ordinance or regulation; or (iii) is harmful, threatening, abusive, harassing, tortuous, defamatory, vulgar, obscene, libelous, or otherwise objectionable. You understand that Automattic shall not be responsible or liable for controlling or editing any User Submission, for any errors or omissions in any User Submission, for any damage or loss caused or alleged to be caused by or in connection with the use of or reliance on any User Submission; nor can Automattic ensure prompt removal of inappropriate or unlawful content or guarantee the identity of any other users or websites with whom you may interact in the course of using the Services. 2. Use of the Services by Third Party Websites. Third party websites may enable the use of the Services on their respective websites as expressly authorized by Automattic (e.g., API calls into Gravatar: <a href="http://en.gravatar.com/site/implement">en.gravatar.com/site/implement</a>); provided that they (i) do not copy, store or modify User Submissions; (ii) do not distribute, display, perform, use or otherwise exercise or exploit any User Submission or other user information for any purpose other than as necessary to perform the Services for the applicable user; (iii) have a privacy policy in effect and posted on such website that complies with all applicable laws and regulations and that notifies such user that it will only use personally identifiable information as set forth in (ii) above; and (iv) agree to be bound by and comply with all the terms, conditions, and limitations set forth in the Terms of Service (“Gravatar-enabled website”).</p>
253
253
  <hr>
254
254
 
255
255
  <p>gravaty</p>
256
256
 
257
- <p>Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
257
+ <p>Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
258
258
 
259
259
  <p>This file is part of gravaty.</p>
260
260
 
@@ -270,7 +270,7 @@ with gravaty. If not, see <http://www.gnu.org/licenses/>.
270
270
 
271
271
  <footer id="validator-badges" role="contentinfo">
272
272
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
273
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
273
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
274
274
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
275
275
  </footer>
276
276
 
@@ -4,15 +4,18 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>Rakefile - gravaty 9.0.1</title>
7
+ <title>Rakefile - gravaty 10.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/jquery.js"></script>
15
- <script src="./js/darkfish.js"></script>
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">
@@ -80,8 +83,6 @@
80
83
 
81
84
  <li><a href="./examples/cacert_pem.html">cacert.pem</a>
82
85
 
83
- <li><a href="./gravaty_gemspec.html">gravaty.gemspec</a>
84
-
85
86
  </ul>
86
87
  </div>
87
88
 
@@ -90,7 +91,7 @@
90
91
 
91
92
  <main role="main" aria-label="Page Rakefile">
92
93
 
93
- <p># gravaty # Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani # # This file is part of gravaty. # # 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. # # 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. # # You should have received a copy of the GNU General Public License # along with gravaty. If not, see &lt;<a href="http://www.gnu.org/licenses">www.gnu.org/licenses</a>/&gt;.</p>
94
+ <p># gravaty # Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 201, 20209 Marco Bresciani # # This file is part of gravaty. # # 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. # # 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. # # You should have received a copy of the GNU General Public License # along with gravaty. If not, see &lt;<a href="http://www.gnu.org/licenses">www.gnu.org/licenses</a>/&gt;.</p>
94
95
 
95
96
  <p>require &#39;rake&#39; require &#39;rake/clean&#39; require &#39;rake/testtask&#39; require &#39;rdoc/task&#39; require &#39;rubygems/package_task&#39;</p>
96
97
 
@@ -122,7 +123,7 @@
122
123
  <p>desc “Run the gem unit tests (task &#39;rake test&#39;)” Rake::TestTask.new do |test_task|</p>
123
124
 
124
125
  <pre class="ruby"><span class="ruby-identifier">test_task</span>.<span class="ruby-identifier">libs</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-string">&#39;test&#39;</span>
125
- <span class="ruby-identifier">test_task</span>.<span class="ruby-identifier">test_files</span> = <span class="ruby-constant">FileList</span>[<span class="ruby-string">&#39;test /test_*.rb&#39;</span>]
126
+ <span class="ruby-identifier">test_task</span>.<span class="ruby-identifier">test_files</span> = <span class="ruby-constant">FileList</span>[<span class="ruby-string">&#39;test/**/test_*.rb&#39;</span>]
126
127
  <span class="ruby-identifier">test_task</span>.<span class="ruby-identifier">verbose</span> = <span class="ruby-keyword">true</span>
127
128
  <span class="ruby-identifier">test_task</span>.<span class="ruby-identifier">warning</span> = <span class="ruby-keyword">true</span>
128
129
  </pre>
@@ -135,7 +136,7 @@
135
136
 
136
137
  <footer id="validator-badges" role="contentinfo">
137
138
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
138
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
139
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
139
140
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
140
141
  </footer>
141
142
 
@@ -4,15 +4,18 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>acknowledgements - gravaty 9.0.1</title>
7
+ <title>acknowledgements - gravaty 10.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/jquery.js"></script>
15
- <script src="./js/darkfish.js"></script>
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,8 +93,6 @@
90
93
 
91
94
  <li><a href="./examples/cacert_pem.html">cacert.pem</a>
92
95
 
93
- <li><a href="./gravaty_gemspec.html">gravaty.gemspec</a>
94
-
95
96
  </ul>
96
97
  </div>
97
98
 
@@ -102,7 +103,7 @@
102
103
  <!--
103
104
  gravaty
104
105
 
105
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
106
+ Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
106
107
 
107
108
  This file is part of gravaty.
108
109
 
@@ -138,7 +139,7 @@ with gravaty. If not, see <http://www.gnu.org/licenses/>.
138
139
 
139
140
  <p>gravaty</p>
140
141
 
141
- <p>Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
142
+ <p>Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
142
143
 
143
144
  <p>This file is part of gravaty.</p>
144
145
 
@@ -154,7 +155,7 @@ with gravaty. If not, see <http://www.gnu.org/licenses/>.
154
155
 
155
156
  <footer id="validator-badges" role="contentinfo">
156
157
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
157
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
158
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
158
159
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
159
160
  </footer>
160
161
 
@@ -4,15 +4,18 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>authors - gravaty 9.0.1</title>
7
+ <title>authors - gravaty 10.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/jquery.js"></script>
15
- <script src="./js/darkfish.js"></script>
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,8 +93,6 @@
90
93
 
91
94
  <li><a href="./examples/cacert_pem.html">cacert.pem</a>
92
95
 
93
- <li><a href="./gravaty_gemspec.html">gravaty.gemspec</a>
94
-
95
96
  </ul>
96
97
  </div>
97
98
 
@@ -102,7 +103,7 @@
102
103
  <!--
103
104
  gravaty
104
105
 
105
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
106
+ Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
106
107
 
107
108
  This file is part of gravaty.
108
109
 
@@ -151,7 +152,7 @@ with gravaty. If not, see <http://www.gnu.org/licenses/>.
151
152
 
152
153
  <p>gravaty</p>
153
154
 
154
- <p>Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
155
+ <p>Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
155
156
 
156
157
  <p>This file is part of gravaty.</p>
157
158
 
@@ -167,7 +168,7 @@ with gravaty. If not, see <http://www.gnu.org/licenses/>.
167
168
 
168
169
  <footer id="validator-badges" role="contentinfo">
169
170
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
170
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
171
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
171
172
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
172
173
  </footer>
173
174
 
@@ -4,15 +4,18 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>copyright - gravaty 9.0.1</title>
7
+ <title>copyright - gravaty 10.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/jquery.js"></script>
15
- <script src="./js/darkfish.js"></script>
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,8 +107,6 @@
104
107
 
105
108
  <li><a href="./examples/cacert_pem.html">cacert.pem</a>
106
109
 
107
- <li><a href="./gravaty_gemspec.html">gravaty.gemspec</a>
108
-
109
110
  </ul>
110
111
  </div>
111
112
 
@@ -116,7 +117,7 @@
116
117
  <!--
117
118
  gravaty
118
119
 
119
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
120
+ Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
120
121
 
121
122
  This file is part of gravaty.
122
123
 
@@ -135,11 +136,11 @@ with gravaty. If not, see <http://www.gnu.org/licenses/>.
135
136
  -->
136
137
  <h1 id="label-Copyright+Notes">Copyright Notes<span><a href="#label-Copyright+Notes">&para;</a> <a href="#top">&uarr;</a></span></h1>
137
138
 
138
- <p>2014-04-16 update.</p>
139
+ <p>2020-03-09 update.</p>
139
140
 
140
141
  <p>gravaty</p>
141
142
 
142
- <p>Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
143
+ <p>Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
143
144
 
144
145
  <p>This file is part of gravaty.</p>
145
146
 
@@ -186,98 +187,100 @@ this software without specific prior written permission.</pre>
186
187
 
187
188
  <p>This license is copied below, and is also available with a FAQ at: <a href="http://scripts.sil.org/OFL">scripts.sil.org/OFL</a></p>
188
189
 
189
- <pre> -----------------------------------------------------------
190
- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
191
- -----------------------------------------------------------
192
-
193
- PREAMBLE
194
- The goals of the Open Font License (OFL) are to stimulate
195
- worldwide development of collaborative font projects, to support
196
- the font creation efforts of academic and linguistic communities,
197
- and to provide a free and open framework in which fonts may be
198
- shared and improved in partnership with others.
199
-
200
- The OFL allows the licensed fonts to be used, studied, modified
201
- and redistributed freely as long as they are not sold by
202
- themselves. The fonts, including any derivative works, can be
203
- bundled, embedded, redistributed and/or sold with any software
204
- provided that any reserved names are not used by derivative
205
- works. The fonts and derivatives, however, cannot be released
206
- under any other type of license. The requirement for fonts to
207
- remain under this license does not apply to any document created
208
- using the fonts or their derivatives.
209
-
210
- DEFINITIONS
211
- &quot;Font Software&quot; refers to the set of files released by the
212
- Copyright Holder(s) under this license and clearly marked as
213
- such. This may include source files, build scripts and
214
- documentation.
215
-
216
- &quot;Reserved Font Name&quot; refers to any names specified as such after
217
- the copyright statement(s).
218
-
219
- &quot;Original Version&quot; refers to the collection of Font Software
220
- components as distributed by the Copyright Holder(s).
221
-
222
- &quot;Modified Version&quot; refers to any derivative made by adding to,
223
- deleting, or substituting -- in part or in whole -- any of the
224
- components of the Original Version, by changing formats or by
225
- porting the Font Software to a new environment.
226
-
227
- &quot;Author&quot; refers to any designer, engineer, programmer, technical
228
- writer or other person who contributed to the Font Software.
229
-
230
- PERMISSION &amp; CONDITIONS
231
- Permission is hereby granted, free of charge, to any person
232
- obtaining a copy of the Font Software, to use, study, copy,
233
- merge, embed, modify, redistribute, and sell modified and
234
- unmodified copies of the Font Software, subject to the following
235
- conditions:
236
-
237
- 1) Neither the Font Software nor any of its individual
238
- components, in Original or Modified Versions, may be sold by
239
- itself.
240
-
241
- 2) Original or Modified Versions of the Font Software may be
242
- bundled, redistributed and/or sold with any software, provided
243
- that each copy contains the above copyright notice and this
244
- license. These can be included either as stand-alone text files,
245
- human-readable headers or in the appropriate machine-readable
246
- metadata fields within text or binary files as long as those
247
- fields can be easily viewed by the user.
248
-
249
- 3) No Modified Version of the Font Software may use the Reserved
250
- Font Name(s) unless explicit written permission is granted by the
251
- corresponding Copyright Holder. This restriction only applies to
252
- the primary font name as presented to the users.
253
-
254
- 4) The name(s) of the Copyright Holder(s) or the Author(s) of the
255
- Font Software shall not be used to promote, endorse or advertise
256
- any Modified Version, except to acknowledge the contribution(s)
257
- of the Copyright Holder(s) and the Author(s) or with their
258
- explicit written permission.
259
-
260
- 5) The Font Software, modified or unmodified, in part or in
261
- whole, must be distributed entirely under this license, and must
262
- not be distributed under any other license. The requirement for
263
- fonts to remain under this license does not apply to any document
264
- created using the Font Software.
265
-
266
- TERMINATION
267
- This license becomes null and void if any of the above conditions
268
- are not met.
269
-
270
- DISCLAIMER
271
- THE FONT SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY
272
- KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY
273
- WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
274
- AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER
275
- RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
276
- CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL,
277
- SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER
278
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
279
- THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER
280
- DEALINGS IN THE FONT SOFTWARE.</pre>
190
+ <pre>/*
191
+ * -----------------------------------------------------------
192
+ * SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
193
+ * -----------------------------------------------------------
194
+ *
195
+ * PREAMBLE
196
+ * The goals of the Open Font License (OFL) are to stimulate
197
+ * worldwide development of collaborative font projects, to support
198
+ * the font creation efforts of academic and linguistic communities,
199
+ * and to provide a free and open framework in which fonts may be
200
+ * shared and improved in partnership with others.
201
+ *
202
+ * The OFL allows the licensed fonts to be used, studied, modified
203
+ * and redistributed freely as long as they are not sold by
204
+ * themselves. The fonts, including any derivative works, can be
205
+ * bundled, embedded, redistributed and/or sold with any software
206
+ * provided that any reserved names are not used by derivative
207
+ * works. The fonts and derivatives, however, cannot be released
208
+ * under any other type of license. The requirement for fonts to
209
+ * remain under this license does not apply to any document created
210
+ * using the fonts or their derivatives.
211
+ *
212
+ * DEFINITIONS
213
+ * &quot;Font Software&quot; refers to the set of files released by the
214
+ * Copyright Holder(s) under this license and clearly marked as
215
+ * such. This may include source files, build scripts and
216
+ * documentation.
217
+ *
218
+ * &quot;Reserved Font Name&quot; refers to any names specified as such after
219
+ * the copyright statement(s).
220
+ *
221
+ * &quot;Original Version&quot; refers to the collection of Font Software
222
+ * components as distributed by the Copyright Holder(s).
223
+ *
224
+ * &quot;Modified Version&quot; refers to any derivative made by adding to,
225
+ * deleting, or substituting -- in part or in whole -- any of the
226
+ * components of the Original Version, by changing formats or by
227
+ * porting the Font Software to a new environment.
228
+ *
229
+ * &quot;Author&quot; refers to any designer, engineer, programmer, technical
230
+ * writer or other person who contributed to the Font Software.
231
+ *
232
+ * PERMISSION &amp; CONDITIONS
233
+ * Permission is hereby granted, free of charge, to any person
234
+ * obtaining a copy of the Font Software, to use, study, copy,
235
+ * merge, embed, modify, redistribute, and sell modified and
236
+ * unmodified copies of the Font Software, subject to the following
237
+ * conditions:
238
+ *
239
+ * 1) Neither the Font Software nor any of its individual
240
+ * components, in Original or Modified Versions, may be sold by
241
+ * itself.
242
+ *
243
+ * 2) Original or Modified Versions of the Font Software may be
244
+ * bundled, redistributed and/or sold with any software, provided
245
+ * that each copy contains the above copyright notice and this
246
+ * license. These can be included either as stand-alone text files,
247
+ * human-readable headers or in the appropriate machine-readable
248
+ * metadata fields within text or binary files as long as those
249
+ * fields can be easily viewed by the user.
250
+ *
251
+ * 3) No Modified Version of the Font Software may use the Reserved
252
+ * Font Name(s) unless explicit written permission is granted by the
253
+ * corresponding Copyright Holder. This restriction only applies to
254
+ * the primary font name as presented to the users.
255
+ *
256
+ * 4) The name(s) of the Copyright Holder(s) or the Author(s) of the
257
+ * Font Software shall not be used to promote, endorse or advertise
258
+ * any Modified Version, except to acknowledge the contribution(s)
259
+ * of the Copyright Holder(s) and the Author(s) or with their
260
+ * explicit written permission.
261
+ *
262
+ * 5) The Font Software, modified or unmodified, in part or in
263
+ * whole, must be distributed entirely under this license, and must
264
+ * not be distributed under any other license. The requirement for
265
+ * fonts to remain under this license does not apply to any document
266
+ * created using the Font Software.
267
+ *
268
+ * TERMINATION
269
+ * This license becomes null and void if any of the above conditions
270
+ * are not met.
271
+ *
272
+ * DISCLAIMER
273
+ * THE FONT SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY
274
+ * KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY
275
+ * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
276
+ * AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER
277
+ * RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
278
+ * CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL,
279
+ * SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER
280
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
281
+ * THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER
282
+ * DEALINGS IN THE FONT SOFTWARE.
283
+ */</pre>
281
284
 
282
285
  <h3 id="label-Lato+Font">Lato Font<span><a href="#label-Lato+Font">&para;</a> <a href="#top">&uarr;</a></span></h3>
283
286
 
@@ -288,99 +291,99 @@ this software without specific prior written permission.</pre>
288
291
  <p>This license is copied below, and is also available with a FAQ at: <a href="http://scripts.sil.org/OFL">scripts.sil.org/OFL</a></p>
289
292
 
290
293
  <pre>/*
291
- -----------------------------------------------------------
292
- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
293
- -----------------------------------------------------------
294
-
295
- PREAMBLE
296
- The goals of the Open Font License (OFL) are to stimulate
297
- worldwide development of collaborative font projects, to support
298
- the font creation efforts of academic and linguistic communities,
299
- and to provide a free and open framework in which fonts may be
300
- shared and improved in partnership with others.
301
-
302
- The OFL allows the licensed fonts to be used, studied, modified
303
- and redistributed freely as long as they are not sold by
304
- themselves. The fonts, including any derivative works, can be
305
- bundled, embedded, redistributed and/or sold with any software
306
- provided that any reserved names are not used by derivative
307
- works. The fonts and derivatives, however, cannot be released
308
- under any other type of license. The requirement for fonts to
309
- remain under this license does not apply to any document created
310
- using the fonts or their derivatives.
311
-
312
- DEFINITIONS
313
- &quot;Font Software&quot; refers to the set of files released by the
314
- Copyright Holder(s) under this license and clearly marked as
315
- such. This may include source files, build scripts and
316
- documentation.
317
-
318
- &quot;Reserved Font Name&quot; refers to any names specified as such after
319
- the copyright statement(s).
320
-
321
- &quot;Original Version&quot; refers to the collection of Font Software
322
- components as distributed by the Copyright Holder(s).
323
-
324
- &quot;Modified Version&quot; refers to any derivative made by adding to,
325
- deleting, or substituting -- in part or in whole -- any of the
326
- components of the Original Version, by changing formats or by
327
- porting the Font Software to a new environment.
328
-
329
- &quot;Author&quot; refers to any designer, engineer, programmer, technical
330
- writer or other person who contributed to the Font Software.
331
-
332
- PERMISSION &amp; CONDITIONS
333
- Permission is hereby granted, free of charge, to any person
334
- obtaining a copy of the Font Software, to use, study, copy,
335
- merge, embed, modify, redistribute, and sell modified and
336
- unmodified copies of the Font Software, subject to the following
337
- conditions:
338
-
339
- 1) Neither the Font Software nor any of its individual
340
- components, in Original or Modified Versions, may be sold by
341
- itself.
342
-
343
- 2) Original or Modified Versions of the Font Software may be
344
- bundled, redistributed and/or sold with any software, provided
345
- that each copy contains the above copyright notice and this
346
- license. These can be included either as stand-alone text files,
347
- human-readable headers or in the appropriate machine-readable
348
- metadata fields within text or binary files as long as those
349
- fields can be easily viewed by the user.
350
-
351
- 3) No Modified Version of the Font Software may use the Reserved
352
- Font Name(s) unless explicit written permission is granted by the
353
- corresponding Copyright Holder. This restriction only applies to
354
- the primary font name as presented to the users.
355
-
356
- 4) The name(s) of the Copyright Holder(s) or the Author(s) of the
357
- Font Software shall not be used to promote, endorse or advertise
358
- any Modified Version, except to acknowledge the contribution(s)
359
- of the Copyright Holder(s) and the Author(s) or with their
360
- explicit written permission.
361
-
362
- 5) The Font Software, modified or unmodified, in part or in
363
- whole, must be distributed entirely under this license, and must
364
- not be distributed under any other license. The requirement for
365
- fonts to remain under this license does not apply to any document
366
- created using the Font Software.
367
-
368
- TERMINATION
369
- This license becomes null and void if any of the above conditions
370
- are not met.
371
-
372
- DISCLAIMER
373
- THE FONT SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY
374
- KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY
375
- WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
376
- AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER
377
- RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
378
- CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL,
379
- SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER
380
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
381
- THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER
382
- DEALINGS IN THE FONT SOFTWARE.
383
- /</pre>
294
+ * -----------------------------------------------------------
295
+ * SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
296
+ * -----------------------------------------------------------
297
+ *
298
+ * PREAMBLE
299
+ * The goals of the Open Font License (OFL) are to stimulate
300
+ * worldwide development of collaborative font projects, to support
301
+ * the font creation efforts of academic and linguistic communities,
302
+ * and to provide a free and open framework in which fonts may be
303
+ * shared and improved in partnership with others.
304
+ *
305
+ * The OFL allows the licensed fonts to be used, studied, modified
306
+ * and redistributed freely as long as they are not sold by
307
+ * themselves. The fonts, including any derivative works, can be
308
+ * bundled, embedded, redistributed and/or sold with any software
309
+ * provided that any reserved names are not used by derivative
310
+ * works. The fonts and derivatives, however, cannot be released
311
+ * under any other type of license. The requirement for fonts to
312
+ * remain under this license does not apply to any document created
313
+ * using the fonts or their derivatives.
314
+ *
315
+ * DEFINITIONS
316
+ * &quot;Font Software&quot; refers to the set of files released by the
317
+ * Copyright Holder(s) under this license and clearly marked as
318
+ * such. This may include source files, build scripts and
319
+ * documentation.
320
+ *
321
+ * &quot;Reserved Font Name&quot; refers to any names specified as such after
322
+ * the copyright statement(s).
323
+ *
324
+ * &quot;Original Version&quot; refers to the collection of Font Software
325
+ * components as distributed by the Copyright Holder(s).
326
+ *
327
+ * &quot;Modified Version&quot; refers to any derivative made by adding to,
328
+ * deleting, or substituting -- in part or in whole -- any of the
329
+ * components of the Original Version, by changing formats or by
330
+ * porting the Font Software to a new environment.
331
+ *
332
+ * &quot;Author&quot; refers to any designer, engineer, programmer, technical
333
+ * writer or other person who contributed to the Font Software.
334
+ *
335
+ * PERMISSION &amp; CONDITIONS
336
+ * Permission is hereby granted, free of charge, to any person
337
+ * obtaining a copy of the Font Software, to use, study, copy,
338
+ * merge, embed, modify, redistribute, and sell modified and
339
+ * unmodified copies of the Font Software, subject to the following
340
+ * conditions:
341
+ *
342
+ * 1) Neither the Font Software nor any of its individual
343
+ * components, in Original or Modified Versions, may be sold by
344
+ * itself.
345
+ *
346
+ * 2) Original or Modified Versions of the Font Software may be
347
+ * bundled, redistributed and/or sold with any software, provided
348
+ * that each copy contains the above copyright notice and this
349
+ * license. These can be included either as stand-alone text files,
350
+ * human-readable headers or in the appropriate machine-readable
351
+ * metadata fields within text or binary files as long as those
352
+ * fields can be easily viewed by the user.
353
+ *
354
+ * 3) No Modified Version of the Font Software may use the Reserved
355
+ * Font Name(s) unless explicit written permission is granted by the
356
+ * corresponding Copyright Holder. This restriction only applies to
357
+ * the primary font name as presented to the users.
358
+ *
359
+ * 4) The name(s) of the Copyright Holder(s) or the Author(s) of the
360
+ * Font Software shall not be used to promote, endorse or advertise
361
+ * any Modified Version, except to acknowledge the contribution(s)
362
+ * of the Copyright Holder(s) and the Author(s) or with their
363
+ * explicit written permission.
364
+ *
365
+ * 5) The Font Software, modified or unmodified, in part or in
366
+ * whole, must be distributed entirely under this license, and must
367
+ * not be distributed under any other license. The requirement for
368
+ * fonts to remain under this license does not apply to any document
369
+ * created using the Font Software.
370
+ *
371
+ * TERMINATION
372
+ * This license becomes null and void if any of the above conditions
373
+ * are not met.
374
+ *
375
+ * DISCLAIMER
376
+ * THE FONT SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY
377
+ * KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY
378
+ * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
379
+ * AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER
380
+ * RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
381
+ * CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL,
382
+ * SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER
383
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
384
+ * THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER
385
+ * DEALINGS IN THE FONT SOFTWARE.
386
+ */</pre>
384
387
 
385
388
  <h3 id="label-Silk+Icons">Silk Icons<span><a href="#label-Silk+Icons">&para;</a> <a href="#top">&uarr;</a></span></h3>
386
389
 
@@ -417,16 +420,34 @@ this software without specific prior written permission.</pre>
417
420
  <h2 id="label-root.crt">root.crt<span><a href="#label-root.crt">&para;</a> <a href="#top">&uarr;</a></span></h2>
418
421
 
419
422
  <p>The root.crt root certificate by CAcert.org is release under the Root Distribution License (see <a href="http://www.cacert.org/policy/RootDistributionLicense.php">www.cacert.org/policy/RootDistributionLicense.php</a>).</p>
420
-
421
- <p>Name: RDL <a href="https://svn.cacert.org/CAcert/Policies/ControlledDocumentList.html">COD14</a> Status: DRAFT <a href="https://wiki.cacert.org/PolicyDecisions#p20100710">p20100710</a> Editor: Mark Lipscombe</p>
423
+ <ul><li>
424
+ <p>Name: RDL <a href="https://svn.cacert.org/CAcert/Policies/ControlledDocumentList.html">COD14</a></p>
425
+ </li><li>
426
+ <p>Status: DRAFT <a href="https://wiki.cacert.org/PolicyDecisions#p20100710">p20100710</a></p>
427
+ </li><li>
428
+ <p>Editor: Mark Lipscombe</p>
429
+ </li></ul>
422
430
 
423
431
  <p>RDL Status - DRAFT</p>
424
432
 
425
433
  <h3 id="label-Root+Distribution+License">Root Distribution License<span><a href="#label-Root+Distribution+License">&para;</a> <a href="#top">&uarr;</a></span></h3>
426
434
 
427
435
  <h4 id="label-Terms">Terms<span><a href="#label-Terms">&para;</a> <a href="#top">&uarr;</a></span></h4>
428
-
429
- <p>“CAcert Inc” means CAcert Incorporated, a non-profit association incorporated in New South Wales, Australia. “CAcert Community Agreement” means the agreement entered into by each person wishing to RELY. “Member” means a natural or legal person who has agreed to the CAcert Community Agreement. “Certificate” means any certificate or like device to which CAcert Inc&#39;s digital signature has been affixed. “CAcert Root Certificates” means any certificate issued by CAcert Inc to itself for the purposes of signing further CAcert Roots or for signing certificates of Members. “RELY” means the human act in taking on a risk or liability on the basis of the claim(s) bound within a certificate issued by CAcert. “Embedded” means a certificate that is contained within a software application or hardware system, when and only when, that software application or system is distributed in binary form only.</p>
436
+ <ul><li>
437
+ <p>“CAcert Inc” means CAcert Incorporated, a non-profit association incorporated in New South Wales, Australia.</p>
438
+ </li><li>
439
+ <p>“CAcert Community Agreement” means the agreement entered into by each person wishing to RELY.</p>
440
+ </li><li>
441
+ <p>“Member” means a natural or legal person who has agreed to the CAcert Community Agreement.</p>
442
+ </li><li>
443
+ <p>“Certificate” means any certificate or like device to which CAcert Inc&#39;s digital signature has been affixed.</p>
444
+ </li><li>
445
+ <p>“CAcert Root Certificates” means any certificate issued by CAcert Inc to itself for the purposes of signing further CAcert Roots or for signing certificates of Members.</p>
446
+ </li><li>
447
+ <p>“RELY” means the human act in taking on a risk or liability on the basis of the claim(s) bound within a certificate issued by CAcert.</p>
448
+ </li><li>
449
+ <p>“Embedded” means a certificate that is contained within a software application or hardware system, when and only when, that software application or system is distributed in binary form only.</p>
450
+ </li></ul>
430
451
 
431
452
  <h4 id="label-Copyright">Copyright<span><a href="#label-Copyright">&para;</a> <a href="#top">&uarr;</a></span></h4>
432
453
 
@@ -437,8 +458,11 @@ this software without specific prior written permission.</pre>
437
458
  <p>You may copy and distribute CAcert Root Certificates only in accordance with this license.</p>
438
459
 
439
460
  <p>CAcert Inc grants you a free, non-exclusive license to copy and distribute CAcert Root Certificates in any medium, with or without modification, provided that the following conditions are met:</p>
440
-
441
- <p>Redistributions of Embedded CAcert Root Certificates must take reasonable steps to inform the recipient of the disclaimer in section 4 or reproduce this license and <a href="copyright_md.html">copyright</a> notice in full in the documentation provided with the distribution. Redistributions in all other forms must reproduce this license and <a href="copyright_md.html">copyright</a> notice in full.</p>
461
+ <ul><li>
462
+ <p>Redistributions of Embedded CAcert Root Certificates must take reasonable steps to inform the recipient of the disclaimer in section 4 or reproduce this license and <a href="copyright_md.html">copyright</a> notice in full in the documentation provided with the distribution.</p>
463
+ </li><li>
464
+ <p>Redistributions in all other forms must reproduce this license and <a href="copyright_md.html">copyright</a> notice in full.</p>
465
+ </li></ul>
442
466
 
443
467
  <h4 id="label-Disclaimer">Disclaimer<span><a href="#label-Disclaimer">&para;</a> <a href="#top">&uarr;</a></span></h4>
444
468
 
@@ -452,14 +476,14 @@ this software without specific prior written permission.</pre>
452
476
 
453
477
  <h3 id="label-Alternatives">Alternatives<span><a href="#label-Alternatives">&para;</a> <a href="#top">&uarr;</a></span></h3>
454
478
 
455
- <p>If you find the terms of the above Root Distribution License difficult or inadequate for your purposes, you may wish to: Enter into the CAcert Community Agreement by <a href="https://www.cacert.org/index.php?id=1">registering as a Member</a>. This is free. Delete CAcert Root Certificates from your software. Your software documentation should give directions and assistance for this.</p>
479
+ <p>If you find the terms of the above Root Distribution License difficult or inadequate for your purposes, you may wish to: * Enter into the CAcert Community Agreement by <a href="https://www.cacert.org/index.php?id=1">registering as a Member</a>. This is free. * Delete CAcert Root Certificates from your software. Your software documentation should give directions and assistance for this.</p>
456
480
 
457
481
  <p>These alternatives are outside the above Root Distribution License and do not incorporate.</p>
458
482
  <hr>
459
483
 
460
484
  <p>gravaty</p>
461
485
 
462
- <p>Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
486
+ <p>Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
463
487
 
464
488
  <p>This file is part of gravaty.</p>
465
489
 
@@ -475,7 +499,7 @@ this software without specific prior written permission.</pre>
475
499
 
476
500
  <footer id="validator-badges" role="contentinfo">
477
501
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
478
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
502
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
479
503
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
480
504
  </footer>
481
505