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
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1e89fe7911f6f49d035a883cce2c6cd0eb031f68a9122294c6638b855b268779
4
- data.tar.gz: 87c0d135f709a77e61a088b5abd0d6e9262aa951ec1ec049d6de257fc30ce8f5
3
+ metadata.gz: 38f3564498e669fa0427d78455481c7f31d596666042872d9c70c3d636899d66
4
+ data.tar.gz: 0c941617d3ae0b6f4b92314a5e944767e1b6b805702668d109a8487968efae50
5
5
  SHA512:
6
- metadata.gz: f357907aac5f725fcc5de63d3c0928759bd3d71be816d0c1e828a2651d91ca80e5d12dc959a6c070e02d4674962149f09c50833309cb80d5888c36ab4588d335
7
- data.tar.gz: 554050f7becdd3d42b4e12d240eb76e4d4d415a5a3ba1ee321787d0d8b18f77157c3da990e261b958eec487c0609065af90bbbfe145d2e7cda5151c2c3d650e5
6
+ metadata.gz: fb7599ba9a1d990f5a2ee06ca0e1c60839f4e8b70bbb8d633b4206167f4d42de68ff9fd120f67494eb4602ceded89829f294e70908b3c2f1c859efa15a957ee3
7
+ data.tar.gz: eb0ee72937e3afb2bba3a65fe188f50f8bf5a4740646d924ca0f8686d4418286c44e9fec1e2709eb038766b0057af90db9b3bfd21b2f813358693d4b411f2013
data/CHANGELOG CHANGED
@@ -1,3 +1,13 @@
1
+ = Version 10.0.0
2
+ * MAJOR update from Ruby '~> 2.6' to Ruby '~> 2.7'.
3
+ * MINOR update IntelliJ IDEA (RubyGem) project configuration.
4
+ * MINOR update Gravatar Terms of Service
5
+ * PATCH update gem dependencies.
6
+ * PATCH change all asserts to matchers
7
+ * PATCH update copyright notice
8
+ * PATCH Fix deprecated methods calls for Minitest version 6.
9
+ * KNOWN BUG: https://savannah.nongnu.org/bugs/?39928
10
+
1
11
  = Version 9.0.1
2
12
  * PATCH updating gem dependencies.
3
13
  * KNOWN BUG: https://savannah.nongnu.org/bugs/?39928
data/Gemfile CHANGED
@@ -1,5 +1,5 @@
1
1
  # gravaty
2
- # Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
2
+ # Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
3
3
  #
4
4
  # This file is part of gravaty.
5
5
  #
data/ISSUES.md CHANGED
@@ -1,7 +1,7 @@
1
1
  <!--
2
2
  gravaty
3
3
 
4
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
4
+ Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
5
5
 
6
6
  This file is part of gravaty.
7
7
 
@@ -44,7 +44,7 @@ Savannah.NonGNU server.
44
44
 
45
45
  gravaty
46
46
 
47
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
47
+ Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
48
48
 
49
49
  This file is part of gravaty.
50
50
 
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  <!--
2
2
  gravaty
3
3
 
4
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
4
+ Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
5
5
 
6
6
  This file is part of gravaty.
7
7
 
@@ -27,7 +27,7 @@ with gravaty. If not, see <http://www.gnu.org/licenses/>.
27
27
  ![Gem download rank (daily)](https://img.shields.io/gem/rd/gravaty.svg?style=plastic)
28
28
  ![Dependent repos (via libraries.io)](https://img.shields.io/librariesio/dependent-repos/rubygems/gravaty.svg?style=plastic)
29
29
 
30
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
30
+ Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
31
31
 
32
32
  This file is part of gravaty.
33
33
 
@@ -58,39 +58,44 @@ I'll send it.
58
58
 
59
59
  You can even decide to contribute to this little free software project
60
60
  by registering to Savannah and ask to be part of the 'gravaty' project!
61
- With contributions from: 新部裕, Peter R. Marreck, Jon Maken, Łukasz
62
- Niemier.
61
+
62
+ With great contributions from: 新部裕, Peter R. Marreck, Jon Maken,
63
+ Łukasz Niemier.
63
64
 
64
65
  ## Documentation
65
66
  Gravaty tries to follow semantic versioning (see <http://semver.org/>).
66
67
  There may be backward incompatible changes each time minor version
67
68
  number changes, but that any tiny version number change should be bug
68
- fixes and internal changes only. Be sure to read the CHANGELOG each time
69
- we cut a new release and lock your gems accordingly.
69
+ fixes and internal changes only.
70
+ Be sure to read the CHANGELOG each time we cut a new release and lock
71
+ your gems accordingly.
70
72
 
71
73
  RDoc documentation available in the html folder.
72
74
 
73
75
  ### Installing Gravaty
74
- RubyGems is the preferred easy install method for Gravaty. Gravaty is
75
- intended to be installed via the
76
- [RubyGems](http://rubyforge.org/projects/rubygems/) system. To get the
77
- latest version, simply enter the following into your command prompt:
78
- `gem install gravaty`.
76
+ RubyGems is the preferred easy install method for Gravaty.
77
+ Gravaty is intended to be installed via the
78
+ [RubyGems](http://rubyforge.org/projects/rubygems/) system.
79
+ To get the latest version, simply enter the following into your command
80
+ prompt: `gem install gravaty`.
79
81
 
80
82
  *NOTE*: for both examples and tests, you may need to set a SSL
81
- certificate file. In Microsoft Windows environment, the easiest way is
82
- as described by the downloader gist. You have to download the
83
- certificates from <http://curl.haxx.se/ca/cacert.pem> (for example)
84
- and, for example, put the cacert.pem file in the gravaty home directory.
83
+ certificate file.
84
+ In Microsoft Windows environment, the easiest way is as described by the
85
+ downloader gist.
86
+ You have to download the certificates from
87
+ <http://curl.haxx.se/ca/cacert.pem> (for example) and, for example, put
88
+ the cacert.pem file in the gravaty home directory.
85
89
  Then `set SSL_CERT_FILE=`{FULL_PATH}`\cacert.pem` and finally try to run
86
90
  `ruby avatar.rb` or `ruby profiles.rb` from the `examples` directory;
87
- both examples should download two files each! The same environment
88
- variable would be needed to run the tests against the XML-RPC API.
91
+ both examples should download two files each!
92
+ The same environment variable would be needed to run the tests against
93
+ the XML-RPC API.
89
94
 
90
95
  ### Supported Ruby Versions and Implementations
91
96
  Because Gravaty is pure Ruby, it should run pretty much anywhere,
92
97
  including Rubinius, JRuby, MacRuby, etc. Officially the support is for
93
- \>= 2.6 YARV/KRI.
98
+ \>= 2.7 YARV/KRI.
94
99
 
95
100
  ### Support
96
101
  The easiest way to get help with Gravaty is to post a message to the
@@ -101,10 +106,11 @@ be happy to help you figure out how to use Gravaty, or help you
101
106
  determine whether it's the right tool for the task you are working on.
102
107
 
103
108
  Please make your posts to the list as specific as possible, including
104
- code samples and output where relevant. Do not post any information that
105
- should not be shared publicly, and be sure to reduce your example code
106
- as much as possible so that those who are responding to your question
107
- can more easily see what the issue might be.
109
+ code samples and output where relevant.
110
+ Do not post any information that should not be shared publicly, and be
111
+ sure to reduce your example code as much as possible so that those who
112
+ are responding to your question can more easily see what the issue might
113
+ be.
108
114
 
109
115
  ### Contributing
110
116
  If you've found a bug, want to submit a patch, or have a feature
@@ -115,9 +121,10 @@ We strongly encourage bug reports to come with failing tests or at least
115
121
  a reduced example that demonstrates the problem.
116
122
 
117
123
  Similarly, patches should include tests, API documentation, and an
118
- update to the manual where relevant. Feel free to clone early though and
119
- participate in the project, if you just want some feedback or a code
120
- review before preparing your code to be merged.
124
+ update to the manual where relevant.
125
+ Feel free to clone early though and participate in the project, if you
126
+ just want some feedback or a code review before preparing your code to
127
+ be merged.
121
128
 
122
129
  If you are unsure about whether or not you've found a bug, or want to
123
130
  check to see whether we'd be interested in the feature you want to add
@@ -158,43 +165,45 @@ Licenses](http://www.gnu.org/licenses/license-list.en.html#GPLCompatibleLicenses
158
165
  <https://gist.github.com/jonforums/2202048>.
159
166
 
160
167
  ### Usage Examples
161
- See `examples` folder. To run the examples just type go into the
162
- `examples` directory and run `ruby `{EXAMPLE_NAME}`.rb`. Running the
163
- examples you'll see both the example description and correct code usage
164
- to perform such action. Here below are listed the currently available
165
- examples:
168
+ See `examples` folder.
169
+ To run the examples just type go into the `examples` directory and run
170
+ `ruby `{EXAMPLE_NAME}`.rb`.
171
+ Running the examples you'll see both the example description and correct
172
+ code usage to perform such action.
173
+ Here below are listed the currently available examples:
166
174
  * The `basics.rb` example (run `ruby basics.rb`) shows how to initialize
167
175
  and use a Gravaty object through the `gravatize` factory method;
168
176
  * The `avatar.rb` example (run `ruby avatar.rb`) shows how to ask for an
169
177
  avatar image through Gravatar (free) service, with all available
170
- options and configurations. It will also show how to download such
171
- images;
178
+ options and configurations.
179
+ It will also show how to download such images;
172
180
  * The `profile.rb` example (run `ruby profile.rb`) shows how to ask for
173
181
  profile data through Gravatar (free) service, with all available
174
- options and configurations. It will also show how to download such
175
- data.
182
+ options and configurations.
183
+ It will also show how to download such data.
176
184
  * The `xmlrpc.rb` example (run `ruby xmlrpc.rb`) shows how to use the
177
185
  XML-RPC API through Gravatar (free) service, with all available
178
- options and configurations. This need a valid username and password to
179
- type x work properly.
186
+ options and configurations.
187
+ This need a valid username and password to work properly.
180
188
 
181
189
  ## Gravatar Terms of Service
182
- *Here follows the unmodified 2019-02-21 11.07 CET version of Gravatar
183
- site terms of service, titled "Gravatar Terms of Use". For the most
184
- updated version, please refer to
190
+ *Here follows the unmodified 2020-03-12 09:22 CEST version of Gravatar
191
+ site terms of service, titled "Gravatar Terms of Use".
192
+ For the most updated version, please refer to
185
193
  https://secure.gravatar.com/site/terms-of-service in order to know how
186
194
  to properly use computer gravatars.*
187
195
 
188
196
  Gravatar Terms of Use
189
197
 
190
198
  PLEASE READ THESE GRAVATAR TERMS OF USE ("GRAVATAR TERMS") CAREFULLY
191
- BEFORE ACCESSING OR USING ANY PART OF THE SERVICES OR WEBSITE. BY USING
192
- THE SERVICES OR WEBSITE IN ANY MANNER, YOU AGREE THAT YOU HAVE READ AND
193
- AGREE TO BECOME BOUND BY THE GRAVATAR TERMS. IF THE GRAVATAR TERMS ARE
194
- CONSIDERED AN OFFER, ACCEPTANCE IS EXPRESSLY LIMITED TO SUCH TERMS. IF
195
- YOU DO NOT UNCONDITIONALLY AGREE TO ALL THE TERMS AND CONDITIONS OF THE
196
- GRAVATAR TERMS, YOU HAVE NO RIGHT TO USE ANY PORTION OF THE SERVICES OR
197
- WEBSITE.
199
+ BEFORE ACCESSING OR USING ANY PART OF THE SERVICES OR WEBSITE.
200
+ BY USING THE SERVICES OR WEBSITE IN ANY MANNER, YOU AGREE THAT YOU HAVE
201
+ READ AND AGREE TO BECOME BOUND BY THE GRAVATAR TERMS.
202
+ IF THE GRAVATAR TERMS ARE CONSIDERED AN OFFER, ACCEPTANCE IS EXPRESSLY
203
+ LIMITED TO SUCH TERMS.
204
+ IF YOU DO NOT UNCONDITIONALLY AGREE TO ALL THE TERMS AND CONDITIONS OF
205
+ THE GRAVATAR TERMS, YOU HAVE NO RIGHT TO USE ANY PORTION OF THE SERVICES
206
+ OR WEBSITE.
198
207
 
199
208
  The Gravatar Terms govern the terms and conditions under which you may
200
209
  use the website located at www.gravatar.com and related services by
@@ -202,74 +211,79 @@ Automattic, including without limitation, the user accounts, profiles,
202
211
  avatars, technology, and other content and materials offered on or
203
212
  through that website (collectively, "Services", and each of which shall
204
213
  be deemed a "Website" for purposes of the Terms of Service (defined
205
- below)). The Gravatar Terms supplement the Terms of Service located at
214
+ below)).
215
+ The Gravatar Terms supplement the Terms of Service located at
206
216
  http://wordpress.com/tos/ (the "Terms of Service"), including without
207
217
  limitation, the Responsibilities of Website Visitors, all warranty
208
218
  disclaimers, limitations of liability, and dispute resolution provisions
209
219
  therein, which shall apply to the subject matter of these Gravatar
210
- Terms, and which are incorporated herein by this reference. If there is
211
- any conflict between the Gravatar Terms and the Terms of Service, the
212
- Gravatar Terms will govern. All capitalized terms that are not defined
213
- herein have the meaning specified in the Terms of Service.');
214
-
215
- Automattic may update the Gravatar Terms from time to time. Your
216
- continued use of the Services following notification of such updates
217
- constitutes your acceptance of those changes.
218
-
219
- 1. User Submissions. The Services may provide you with the ability to
220
- create, upload, distribute or post ("Submit(ting)") data, photographs,
221
- avatars, software, graphics, profile and other information to the
222
- Services (collectively, the "User Submissions"). By Submitting User
223
- Submissions, you acknowledge that you are publishing that User
224
- Submission, and that you may be identified publicly by your avatar and
225
- other User Submissions (e.g., in connection with your blogs, comments
226
- and/or email address) by Automattic, third party Gravatar-enabled
227
- websites (as that term in defined below), and others. More specifically,
228
- you hereby do and shall grant to Automattic a worldwide, perpetual,
229
- irrevocable, royalty-free and fully-paid, transferable (including rights
230
- to sublicense) right to perform the Services (e.g., to use, modify,
231
- reproduce, distribute, prepare derivative works of, display, perform,
232
- and otherwise fully exercise and exploit all intellectual property,
233
- publicity, and moral rights with respect to any User Submissions, and to
234
- allow others to do so).
235
-
236
- By Submitting, you agree to be solely responsible for the User
237
- Submissions and release Automattic from any liability related to your
238
- use of the Services. You warrant, represent and agree that you will not
239
- Submit any User Submissions or otherwise use the Services in a manner
240
- that (i) infringes the intellectual property or proprietary rights, or
241
- rights of publicity or privacy, of any third party; (ii) violates any
242
- law, statute, ordinance or regulation; or (iii) is harmful, threatening,
243
- abusive, harassing, tortuous, defamatory, vulgar, obscene, libelous, or
244
- otherwise objectionable. You understand that Automattic shall not be
245
- responsible or liable for controlling or editing any User Submission,
246
- for any errors or omissions in any User Submission, for any damage or
247
- loss caused or alleged to be caused by or in connection with the use of
248
- or reliance on any User Submission; nor can Automattic ensure prompt
249
- removal of inappropriate or unlawful content or guarantee the identity
250
- of any other users or websites with whom you may interact in the course
251
- of using the Services.
252
-
253
- 2. Use of the Services by Third Party Websites. Third party websites may
254
- enable the use of the Services on their respective websites as expressly
255
- authorized by Automattic (e.g., API calls into Gravatar:
256
- http://en.gravatar.com/site/implement); provided that they (i) do not
257
- copy, store or modify User Submissions; (ii) do not distribute, display,
258
- perform, use or otherwise exercise or exploit any User Submission or
259
- other user information for any purpose other than as necessary to
260
- perform the Services for the applicable user; (iii) have a privacy
261
- policy in effect and posted on such website that complies with all
262
- applicable laws and regulations and that notifies such user that it will
263
- only use personally identifiable information as set forth in (ii) above;
264
- and (iv) agree to be bound by and comply with all the terms, conditions,
265
- and limitations set forth in the Terms of Service ("Gravatar-enabled
266
- website").
220
+ Terms, and which are incorporated herein by this reference.
221
+ If there is any conflict between the Gravatar Terms and the Terms of
222
+ Service, the Gravatar Terms will govern.
223
+ All capitalized terms that are not defined herein have the meaning
224
+ specified in the Terms of Service.');
225
+
226
+ Automattic may update the Gravatar Terms from time to time.
227
+ Your continued use of the Services following notification of such
228
+ updates constitutes your acceptance of those changes.
229
+
230
+ 1. User Submissions.
231
+ The Services may provide you with the ability to create, upload,
232
+ distribute or post ("Submit(ting)") data, photographs, avatars,
233
+ software, graphics, profile and other information to the Services
234
+ (collectively, the "User Submissions").
235
+ By Submitting User Submissions, you acknowledge that you are
236
+ publishing that User Submission, and that you may be identified
237
+ publicly by your avatar and other User Submissions (e.g., in
238
+ connection with your blogs, comments and/or email address) by
239
+ Automattic, third party Gravatar-enabled websites (as that term in
240
+ defined below), and others.
241
+ More specifically, you hereby do and shall grant to Automattic a
242
+ worldwide, perpetual, irrevocable, royalty-free and fully-paid,
243
+ transferable (including rights to sublicense) right to perform the
244
+ Services (e.g., to use, modify, reproduce, distribute, prepare
245
+ derivative works of, display, perform, and otherwise fully exercise
246
+ and exploit all intellectual property, publicity, and moral rights
247
+ with respect to any User Submissions, and to allow others to do so).
248
+
249
+ By Submitting, you agree to be solely responsible for the User
250
+ Submissions and release Automattic from any liability related to
251
+ your use of the Services.
252
+ You warrant, represent and agree that you will not Submit any User
253
+ Submissions or otherwise use the Services in a manner that (i)
254
+ infringes the intellectual property or proprietary rights, or rights
255
+ of publicity or privacy, of any third party; (ii) violates any law,
256
+ statute, ordinance or regulation; or (iii) is harmful, threatening,
257
+ abusive, harassing, tortuous, defamatory, vulgar, obscene, libelous,
258
+ or otherwise objectionable.
259
+ You understand that Automattic shall not be responsible or liable for
260
+ controlling or editing any User Submission, for any errors or
261
+ omissions in any User Submission, for any damage or loss caused or
262
+ alleged to be caused by or in connection with the use of or reliance
263
+ on any User Submission; nor can Automattic ensure prompt removal of
264
+ inappropriate or unlawful content or guarantee the identity of any
265
+ other users or websites with whom you may interact in the course of
266
+ using the Services.
267
+ 2. Use of the Services by Third Party Websites.
268
+ Third party websites may enable the use of the Services on their
269
+ respective websites as expressly authorized by Automattic (e.g., API
270
+ calls into Gravatar: http://en.gravatar.com/site/implement); provided
271
+ that they (i) do not copy, store or modify User Submissions; (ii) do
272
+ not distribute, display, perform, use or otherwise exercise or
273
+ exploit any User Submission or other user information for any purpose
274
+ other than as necessary to perform the Services for the applicable
275
+ user; (iii) have a privacy policy in effect and posted on such
276
+ website that complies with all applicable laws and regulations and
277
+ that notifies such user that it will only use personally identifiable
278
+ information as set forth in (ii) above; and (iv) agree to be bound by
279
+ and comply with all the terms, conditions, and limitations set forth
280
+ in the Terms of Service ("Gravatar-enabled website").
267
281
 
268
282
  ------------------------------------------
269
283
 
270
284
  gravaty
271
285
 
272
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
286
+ Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
273
287
 
274
288
  This file is part of gravaty.
275
289
 
data/Rakefile CHANGED
@@ -1,5 +1,5 @@
1
1
  # gravaty
2
- # Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
2
+ # Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 201, 20209 Marco Bresciani
3
3
  #
4
4
  # This file is part of gravaty.
5
5
  #
@@ -1,7 +1,7 @@
1
1
  <!--
2
2
  gravaty
3
3
 
4
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
4
+ Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
5
5
 
6
6
  This file is part of gravaty.
7
7
 
@@ -48,7 +48,7 @@ upon MiniPortile's HTTP implementation*, please note that "License:
48
48
 
49
49
  gravaty
50
50
 
51
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
51
+ Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
52
52
 
53
53
  This file is part of gravaty.
54
54
 
data/authors.md CHANGED
@@ -1,7 +1,7 @@
1
1
  <!--
2
2
  gravaty
3
3
 
4
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
4
+ Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
5
5
 
6
6
  This file is part of gravaty.
7
7
 
@@ -45,7 +45,7 @@ No one else, yet.
45
45
 
46
46
  gravaty
47
47
 
48
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
48
+ Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
49
49
 
50
50
  This file is part of gravaty.
51
51
 
@@ -1,7 +1,7 @@
1
1
  <!--
2
2
  gravaty
3
3
 
4
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
4
+ Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
5
5
 
6
6
  This file is part of gravaty.
7
7
 
@@ -20,11 +20,11 @@ with gravaty. If not, see <http://www.gnu.org/licenses/>.
20
20
  -->
21
21
 
22
22
  # Copyright Notes
23
- 2014-04-16 update.
23
+ 2020-03-09 update.
24
24
 
25
25
  gravaty
26
26
 
27
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
27
+ Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
28
28
 
29
29
  This file is part of gravaty.
30
30
 
@@ -450,7 +450,7 @@ do not incorporate.
450
450
 
451
451
  gravaty
452
452
 
453
- Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
453
+ Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
454
454
 
455
455
  This file is part of gravaty.
456
456
 
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # gravaty
3
- # Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
3
+ # Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
4
4
  #
5
5
  # This file is part of gravaty.
6
6
  #