shep 0.1.0.pre.alpha0 → 0.2.1.pre.alpha0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -1
  3. data/Rakefile +1 -0
  4. data/doc/Shep/Entity/Account.html +22 -37
  5. data/doc/Shep/Entity/Context.html +8 -9
  6. data/doc/Shep/Entity/CustomEmoji.html +11 -15
  7. data/doc/Shep/Entity/MediaAttachment.html +13 -19
  8. data/doc/Shep/Entity/Notification.html +11 -15
  9. data/doc/Shep/Entity/Status.html +34 -61
  10. data/doc/Shep/Entity/StatusSource.html +9 -11
  11. data/doc/Shep/Entity/Status_Application.html +11 -10
  12. data/doc/Shep/Entity/Status_Mention.html +10 -13
  13. data/doc/Shep/Entity/Status_Tag.html +8 -9
  14. data/doc/Shep/Entity.html +156 -141
  15. data/doc/Shep/Error/Caller.html +4 -4
  16. data/doc/Shep/Error/Http.html +22 -22
  17. data/doc/Shep/Error/RateLimit.html +176 -0
  18. data/doc/Shep/Error/Remote.html +3 -4
  19. data/doc/Shep/Error/Server.html +5 -4
  20. data/doc/Shep/Error/Type.html +10 -12
  21. data/doc/Shep/Error.html +8 -5
  22. data/doc/Shep/Session.html +1023 -572
  23. data/doc/Shep.html +20 -5
  24. data/doc/_index.html +10 -3
  25. data/doc/class_list.html +1 -1
  26. data/doc/file.README.html +52 -33
  27. data/doc/file_list.html +1 -1
  28. data/doc/index.html +117 -239
  29. data/doc/method_list.html +9 -1
  30. data/doc/top-level-namespace.html +2 -2
  31. data/lib/shep/entity_base.rb +6 -1
  32. data/lib/shep/exceptions.rb +8 -0
  33. data/lib/shep/session.rb +340 -145
  34. data/lib/shep/version.rb +4 -0
  35. data/lib/shep.rb +1 -1
  36. data/run_rake_test.example.sh +12 -5
  37. data/shep.gemspec +4 -2
  38. data/spec/session_reader_1_unauth_spec.rb +20 -17
  39. data/spec/session_reader_2_auth_spec.rb +17 -19
  40. data/spec/session_writer_spec.rb +4 -11
  41. data/spec/session_zzz_tricky_spec.rb +205 -0
  42. data/spec/spec_helper.rb +12 -3
  43. data/yard_helper.rb +11 -5
  44. metadata +12 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6c6367c0187088b7eaf75a7156125fed7bc1d202ddddad6f29ab9c1fe136d92f
4
- data.tar.gz: 6c54ac1536ed90f301ce72d2d852976d05e9f5f5b7b0e0d5ae5bb48a273a86b7
3
+ metadata.gz: 8f4a9bca801cc45d91592b3d31f76806ac672e7357cd49dfafc179152a87471f
4
+ data.tar.gz: aed06e61da3fff93695852f8236380e7be5fb22b046be0355705eb259a2cd50d
5
5
  SHA512:
6
- metadata.gz: 4620472694967a1f86f9a761974e987ce9f172e710e135e5a60fce31067eba811bbc3ae391cb1ba910dd039b0b741f8a16ec17af79d760a80881e4a32f5d6c6e
7
- data.tar.gz: 9ac1ff2009dd58d21bdef21aea856da4a18bc887157619697fc7365e739d9672fbc6f94d6bdd8e32a3f7724af8782b775ac1ef584d226e3ee7b9ff642fba1a59
6
+ metadata.gz: 1006f24313ec50a7c53e93d74af104e239504411d44b1cee0fe440e09042bea6eb6e80de80545c0332810baf50c1c5291bdf84b3f935e141323b4de745c26ab5
7
+ data.tar.gz: 89bb2df74de07fc6c21173aa93209414c582fd356562c91b8f712122b2824ffd53f362d0d462736c668bb6ae5fa48199036869485a763f99b93feccef693f181
data/README.md CHANGED
@@ -61,7 +61,7 @@ It can also be used for other things.
61
61
 
62
62
  The usual way to install Shep is via gem:
63
63
 
64
- $ gem install shep
64
+ $ gem install shep --pre
65
65
 
66
66
  Alternately, you can fetch this repo and add it to your Ruby path.
67
67
 
@@ -86,6 +86,10 @@ values.
86
86
  The file `run_rake_test.example.sh` documents these variables and what
87
87
  they do.
88
88
 
89
+ There are also a number of tricky tests (e.g. for rate-limit-reached
90
+ cases) that need to be explicitly invoked using rspec tags. See
91
+ `spec/session_zzz_tricky.rb` for details.
92
+
89
93
 
90
94
  ## License and Warranty
91
95
 
data/Rakefile CHANGED
@@ -25,6 +25,7 @@ YARD::Rake::YardocTask.new(:doc) do |t|
25
25
  # We skip lib/shep/typeboxes.rb because that's completely
26
26
  # internal.
27
27
  t.files = %w{lib/shep.rb
28
+ lib/shep/version.rb
28
29
  lib/shep/exceptions.rb
29
30
  lib/shep/entity_base.rb
30
31
  lib/shep/entities.rb
@@ -103,41 +103,26 @@
103
103
 
104
104
  <h2>Overview</h2><div class="docstring">
105
105
  <div class="discussion">
106
-
107
- <p>Ruby object representing a Mastodon <code>Account</code> object:</p>
108
- <ul><li>
109
- <p>id (String)</p>
110
- </li><li>
111
- <p>username (String)</p>
112
- </li><li>
113
- <p>acct (String)</p>
114
- </li><li>
115
- <p>display_name (String)</p>
116
- </li><li>
117
- <p>locked (Boolean)</p>
118
- </li><li>
119
- <p>bot (Boolean)</p>
120
- </li><li>
121
- <p>created_at (Time)</p>
122
- </li><li>
123
- <p>followers_count (Integer)</p>
124
- </li><li>
125
- <p>following_count (Integer)</p>
126
- </li><li>
127
- <p>statuses_count (Integer)</p>
128
- </li><li>
129
- <p>note (String)</p>
130
- </li><li>
131
- <p>url (URI)</p>
132
- </li><li>
133
- <p>avatar (URI)</p>
134
- </li><li>
135
- <p>avatar_static (URI)</p>
136
- </li><li>
137
- <p>header (URI)</p>
138
- </li><li>
139
- <p>header_static (URI)</p>
140
- </li></ul>
106
+ <p>Ruby object representing a Mastodon <code>Account</code> object:</p>
107
+
108
+ <ul>
109
+ <li>id (String)</li>
110
+ <li>username (String)</li>
111
+ <li>acct (String)</li>
112
+ <li>display_name (String)</li>
113
+ <li>locked (Boolean)</li>
114
+ <li>bot (Boolean)</li>
115
+ <li>created_at (Time)</li>
116
+ <li>followers_count (Integer)</li>
117
+ <li>following_count (Integer)</li>
118
+ <li>statuses_count (Integer)</li>
119
+ <li>note (String)</li>
120
+ <li>url (URI)</li>
121
+ <li>avatar (URI)</li>
122
+ <li>avatar_static (URI)</li>
123
+ <li>header (URI)</li>
124
+ <li>header_static (URI)</li>
125
+ </ul>
141
126
 
142
127
  <p>See <code>Shep::Entity</code> for an overview.</p>
143
128
 
@@ -183,9 +168,9 @@
183
168
  </div>
184
169
 
185
170
  <div id="footer">
186
- Generated on Sun Jun 4 13:40:32 2023 by
171
+ Generated on Thu Jun 15 10:09:20 2023 by
187
172
  <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
188
- 0.9.34 (ruby-3.1.0).
173
+ 0.9.34 (ruby-3.0.3).
189
174
  </div>
190
175
 
191
176
  </div>
@@ -103,13 +103,12 @@
103
103
 
104
104
  <h2>Overview</h2><div class="docstring">
105
105
  <div class="discussion">
106
-
107
- <p>Ruby object representing a Mastodon <code>Context</code> object:</p>
108
- <ul><li>
109
- <p>ancestors (Array&lt;Entity::Status&gt;)</p>
110
- </li><li>
111
- <p>descendants (Array&lt;Entity::Status&gt;)</p>
112
- </li></ul>
106
+ <p>Ruby object representing a Mastodon <code>Context</code> object:</p>
107
+
108
+ <ul>
109
+ <li>ancestors (Array&lt;<span class='object_link'><a href="Status.html" title="Shep::Entity::Status (class)">Status</a></span>&gt;)</li>
110
+ <li>descendants (Array&lt;<span class='object_link'><a href="Status.html" title="Shep::Entity::Status (class)">Status</a></span>&gt;)</li>
111
+ </ul>
113
112
 
114
113
  <p>See <code>Shep::Entity</code> for an overview.</p>
115
114
 
@@ -155,9 +154,9 @@
155
154
  </div>
156
155
 
157
156
  <div id="footer">
158
- Generated on Sun Jun 4 13:40:32 2023 by
157
+ Generated on Thu Jun 15 10:09:20 2023 by
159
158
  <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
160
- 0.9.34 (ruby-3.1.0).
159
+ 0.9.34 (ruby-3.0.3).
161
160
  </div>
162
161
 
163
162
  </div>
@@ -103,19 +103,15 @@
103
103
 
104
104
  <h2>Overview</h2><div class="docstring">
105
105
  <div class="discussion">
106
-
107
- <p>Ruby object representing a Mastodon <code>CustomEmoji</code> object:</p>
108
- <ul><li>
109
- <p>shortcode (String)</p>
110
- </li><li>
111
- <p>url (URI)</p>
112
- </li><li>
113
- <p>static_url (URI)</p>
114
- </li><li>
115
- <p>visible_in_picker (Boolean)</p>
116
- </li><li>
117
- <p>category (String)</p>
118
- </li></ul>
106
+ <p>Ruby object representing a Mastodon <code>CustomEmoji</code> object:</p>
107
+
108
+ <ul>
109
+ <li>shortcode (String)</li>
110
+ <li>url (URI)</li>
111
+ <li>static_url (URI)</li>
112
+ <li>visible_in_picker (Boolean)</li>
113
+ <li>category (String)</li>
114
+ </ul>
119
115
 
120
116
  <p>See <code>Shep::Entity</code> for an overview.</p>
121
117
 
@@ -161,9 +157,9 @@
161
157
  </div>
162
158
 
163
159
  <div id="footer">
164
- Generated on Sun Jun 4 13:40:31 2023 by
160
+ Generated on Thu Jun 15 10:09:20 2023 by
165
161
  <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
166
- 0.9.34 (ruby-3.1.0).
162
+ 0.9.34 (ruby-3.0.3).
167
163
  </div>
168
164
 
169
165
  </div>
@@ -103,23 +103,17 @@
103
103
 
104
104
  <h2>Overview</h2><div class="docstring">
105
105
  <div class="discussion">
106
-
107
- <p>Ruby object representing a Mastodon <code>MediaAttachment</code> object:</p>
108
- <ul><li>
109
- <p>id (String)</p>
110
- </li><li>
111
- <p>type (String)</p>
112
- </li><li>
113
- <p>url (URI)</p>
114
- </li><li>
115
- <p>preview_uri (URI)</p>
116
- </li><li>
117
- <p>remote_url (URI)</p>
118
- </li><li>
119
- <p>description (String)</p>
120
- </li><li>
121
- <p>blurhash (String)</p>
122
- </li></ul>
106
+ <p>Ruby object representing a Mastodon <code>MediaAttachment</code> object:</p>
107
+
108
+ <ul>
109
+ <li>id (String)</li>
110
+ <li>type (String)</li>
111
+ <li>url (URI)</li>
112
+ <li>preview_uri (URI)</li>
113
+ <li>remote_url (URI)</li>
114
+ <li>description (String)</li>
115
+ <li>blurhash (String)</li>
116
+ </ul>
123
117
 
124
118
  <p>See <code>Shep::Entity</code> for an overview.</p>
125
119
 
@@ -165,9 +159,9 @@
165
159
  </div>
166
160
 
167
161
  <div id="footer">
168
- Generated on Sun Jun 4 13:40:32 2023 by
162
+ Generated on Thu Jun 15 10:09:20 2023 by
169
163
  <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
170
- 0.9.34 (ruby-3.1.0).
164
+ 0.9.34 (ruby-3.0.3).
171
165
  </div>
172
166
 
173
167
  </div>
@@ -103,19 +103,15 @@
103
103
 
104
104
  <h2>Overview</h2><div class="docstring">
105
105
  <div class="discussion">
106
-
107
- <p>Ruby object representing a Mastodon <code>Notification</code> object:</p>
108
- <ul><li>
109
- <p>id (String)</p>
110
- </li><li>
111
- <p>type (String)</p>
112
- </li><li>
113
- <p>created_at (Time)</p>
114
- </li><li>
115
- <p>account (Entity::Account)</p>
116
- </li><li>
117
- <p>status (Entity::Status)</p>
118
- </li></ul>
106
+ <p>Ruby object representing a Mastodon <code>Notification</code> object:</p>
107
+
108
+ <ul>
109
+ <li>id (String)</li>
110
+ <li>type (String)</li>
111
+ <li>created_at (Time)</li>
112
+ <li>account (<span class='object_link'><a href="Account.html" title="Shep::Entity::Account (class)">Account</a></span>)</li>
113
+ <li>status (<span class='object_link'><a href="Status.html" title="Shep::Entity::Status (class)">Status</a></span>)</li>
114
+ </ul>
119
115
 
120
116
  <p>See <code>Shep::Entity</code> for an overview.</p>
121
117
 
@@ -161,9 +157,9 @@
161
157
  </div>
162
158
 
163
159
  <div id="footer">
164
- Generated on Sun Jun 4 13:40:32 2023 by
160
+ Generated on Thu Jun 15 10:09:20 2023 by
165
161
  <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
166
- 0.9.34 (ruby-3.1.0).
162
+ 0.9.34 (ruby-3.0.3).
167
163
  </div>
168
164
 
169
165
  </div>
@@ -103,65 +103,38 @@
103
103
 
104
104
  <h2>Overview</h2><div class="docstring">
105
105
  <div class="discussion">
106
-
107
- <p>Ruby object representing a Mastodon <code>Status</code> object:</p>
108
- <ul><li>
109
- <p>id (String)</p>
110
- </li><li>
111
- <p>uri (URI)</p>
112
- </li><li>
113
- <p>created_at (Time)</p>
114
- </li><li>
115
- <p>account (Entity::Account)</p>
116
- </li><li>
117
- <p>content (String)</p>
118
- </li><li>
119
- <p>visibility (String)</p>
120
- </li><li>
121
- <p>sensitive (Boolean)</p>
122
- </li><li>
123
- <p>spoiler_text (String)</p>
124
- </li><li>
125
- <p>media_attachments (Array&lt;Entity::MediaAttachment&gt;)</p>
126
- </li><li>
127
- <p>applications (Entity::Status_Application)</p>
128
- </li><li>
129
- <p>mentions (Array&lt;Entity::Status_Mention&gt;)</p>
130
- </li><li>
131
- <p>tags (Array&lt;Entity::Status_Tag&gt;)</p>
132
- </li><li>
133
- <p>emojis (Array&lt;Entity::CustomEmoji&gt;)</p>
134
- </li><li>
135
- <p>reblogs_count (Integer)</p>
136
- </li><li>
137
- <p>favourites_count (Integer)</p>
138
- </li><li>
139
- <p>replies_count (Integer)</p>
140
- </li><li>
141
- <p>url (URI)</p>
142
- </li><li>
143
- <p>in_reply_to_id (String)</p>
144
- </li><li>
145
- <p>in_reply_to_account_id (String)</p>
146
- </li><li>
147
- <p>reblog (Entity::Status)</p>
148
- </li><li>
149
- <p>language (String)</p>
150
- </li><li>
151
- <p>text (String)</p>
152
- </li><li>
153
- <p>edited_at (Time)</p>
154
- </li><li>
155
- <p>favourited (Boolean)</p>
156
- </li><li>
157
- <p>reblogged (Boolean)</p>
158
- </li><li>
159
- <p>muted (Boolean)</p>
160
- </li><li>
161
- <p>bookmarked (Boolean)</p>
162
- </li><li>
163
- <p>pinned (Boolean)</p>
164
- </li></ul>
106
+ <p>Ruby object representing a Mastodon <code>Status</code> object:</p>
107
+
108
+ <ul>
109
+ <li>id (String)</li>
110
+ <li>uri (URI)</li>
111
+ <li>created_at (Time)</li>
112
+ <li>account (<span class='object_link'><a href="Account.html" title="Shep::Entity::Account (class)">Account</a></span>)</li>
113
+ <li>content (String)</li>
114
+ <li>visibility (String)</li>
115
+ <li>sensitive (Boolean)</li>
116
+ <li>spoiler_text (String)</li>
117
+ <li>media_attachments (Array&lt;<span class='object_link'><a href="MediaAttachment.html" title="Shep::Entity::MediaAttachment (class)">MediaAttachment</a></span>&gt;)</li>
118
+ <li>applications (<span class='object_link'><a href="Status_Application.html" title="Shep::Entity::Status_Application (class)">Status_Application</a></span>)</li>
119
+ <li>mentions (Array&lt;<span class='object_link'><a href="Status_Mention.html" title="Shep::Entity::Status_Mention (class)">Status_Mention</a></span>&gt;)</li>
120
+ <li>tags (Array&lt;<span class='object_link'><a href="Status_Tag.html" title="Shep::Entity::Status_Tag (class)">Status_Tag</a></span>&gt;)</li>
121
+ <li>emojis (Array&lt;<span class='object_link'><a href="CustomEmoji.html" title="Shep::Entity::CustomEmoji (class)">CustomEmoji</a></span>&gt;)</li>
122
+ <li>reblogs_count (Integer)</li>
123
+ <li>favourites_count (Integer)</li>
124
+ <li>replies_count (Integer)</li>
125
+ <li>url (URI)</li>
126
+ <li>in_reply_to_id (String)</li>
127
+ <li>in_reply_to_account_id (String)</li>
128
+ <li>reblog (<span class='object_link'><a href="" title="Shep::Entity::Status (class)">Status</a></span>)</li>
129
+ <li>language (String)</li>
130
+ <li>text (String)</li>
131
+ <li>edited_at (Time)</li>
132
+ <li>favourited (Boolean)</li>
133
+ <li>reblogged (Boolean)</li>
134
+ <li>muted (Boolean)</li>
135
+ <li>bookmarked (Boolean)</li>
136
+ <li>pinned (Boolean)</li>
137
+ </ul>
165
138
 
166
139
  <p>See <code>Shep::Entity</code> for an overview.</p>
167
140
 
@@ -207,9 +180,9 @@
207
180
  </div>
208
181
 
209
182
  <div id="footer">
210
- Generated on Sun Jun 4 13:40:32 2023 by
183
+ Generated on Thu Jun 15 10:09:20 2023 by
211
184
  <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
212
- 0.9.34 (ruby-3.1.0).
185
+ 0.9.34 (ruby-3.0.3).
213
186
  </div>
214
187
 
215
188
  </div>
@@ -103,15 +103,13 @@
103
103
 
104
104
  <h2>Overview</h2><div class="docstring">
105
105
  <div class="discussion">
106
-
107
- <p>Ruby object representing a Mastodon <code>StatusSource</code> object:</p>
108
- <ul><li>
109
- <p>id (String)</p>
110
- </li><li>
111
- <p>text (String)</p>
112
- </li><li>
113
- <p>spoiler_text (String)</p>
114
- </li></ul>
106
+ <p>Ruby object representing a Mastodon <code>StatusSource</code> object:</p>
107
+
108
+ <ul>
109
+ <li>id (String)</li>
110
+ <li>text (String)</li>
111
+ <li>spoiler_text (String)</li>
112
+ </ul>
115
113
 
116
114
  <p>See <code>Shep::Entity</code> for an overview.</p>
117
115
 
@@ -157,9 +155,9 @@
157
155
  </div>
158
156
 
159
157
  <div id="footer">
160
- Generated on Sun Jun 4 13:40:32 2023 by
158
+ Generated on Thu Jun 15 10:09:20 2023 by
161
159
  <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
162
- 0.9.34 (ruby-3.1.0).
160
+ 0.9.34 (ruby-3.0.3).
163
161
  </div>
164
162
 
165
163
  </div>
@@ -103,17 +103,18 @@
103
103
 
104
104
  <h2>Overview</h2><div class="docstring">
105
105
  <div class="discussion">
106
-
107
- <p>Ruby object representing a Mastodon <code>Status::Application</code> object:</p>
108
- <ul><li>
109
- <p>name (String)</p>
110
- </li><li>
111
- <p>website (URI)</p>
112
- </li></ul>
106
+ <p>Ruby object representing a Mastodon <code>Status::Application</code> object:</p>
107
+
108
+ <ul>
109
+ <li>name (String)</li>
110
+ <li>website (URI)</li>
111
+ </ul>
113
112
 
114
113
  <p>See <code>Shep::Entity</code> for an overview.</p>
115
114
 
116
- <p>The specification describes this as a Hash object with arbitrary fields. <code>Shep</code> doesn’t really support that (yet) so we only give you the expected fields.</p>
115
+ <p>The specification describes this as a Hash object with arbitrary
116
+ fields. <code>Shep</code> doesn&#39;t really support that (yet) so we only give
117
+ you the expected fields.</p>
117
118
 
118
119
 
119
120
  </div>
@@ -157,9 +158,9 @@
157
158
  </div>
158
159
 
159
160
  <div id="footer">
160
- Generated on Sun Jun 4 13:40:32 2023 by
161
+ Generated on Thu Jun 15 10:09:20 2023 by
161
162
  <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
162
- 0.9.34 (ruby-3.1.0).
163
+ 0.9.34 (ruby-3.0.3).
163
164
  </div>
164
165
 
165
166
  </div>
@@ -103,17 +103,14 @@
103
103
 
104
104
  <h2>Overview</h2><div class="docstring">
105
105
  <div class="discussion">
106
-
107
- <p>Ruby object representing a Mastodon <code>Status::Mention</code> object:</p>
108
- <ul><li>
109
- <p>id (String)</p>
110
- </li><li>
111
- <p>username (String)</p>
112
- </li><li>
113
- <p>url (URI)</p>
114
- </li><li>
115
- <p>acct (String)</p>
116
- </li></ul>
106
+ <p>Ruby object representing a Mastodon <code>Status::Mention</code> object:</p>
107
+
108
+ <ul>
109
+ <li>id (String)</li>
110
+ <li>username (String)</li>
111
+ <li>url (URI)</li>
112
+ <li>acct (String)</li>
113
+ </ul>
117
114
 
118
115
  <p>See <code>Shep::Entity</code> for an overview.</p>
119
116
 
@@ -159,9 +156,9 @@
159
156
  </div>
160
157
 
161
158
  <div id="footer">
162
- Generated on Sun Jun 4 13:40:32 2023 by
159
+ Generated on Thu Jun 15 10:09:20 2023 by
163
160
  <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
164
- 0.9.34 (ruby-3.1.0).
161
+ 0.9.34 (ruby-3.0.3).
165
162
  </div>
166
163
 
167
164
  </div>
@@ -103,13 +103,12 @@
103
103
 
104
104
  <h2>Overview</h2><div class="docstring">
105
105
  <div class="discussion">
106
-
107
- <p>Ruby object representing a Mastodon <code>Status::Tag</code> object:</p>
108
- <ul><li>
109
- <p>name (String)</p>
110
- </li><li>
111
- <p>url (URI)</p>
112
- </li></ul>
106
+ <p>Ruby object representing a Mastodon <code>Status::Tag</code> object:</p>
107
+
108
+ <ul>
109
+ <li>name (String)</li>
110
+ <li>url (URI)</li>
111
+ </ul>
113
112
 
114
113
  <p>See <code>Shep::Entity</code> for an overview.</p>
115
114
 
@@ -155,9 +154,9 @@
155
154
  </div>
156
155
 
157
156
  <div id="footer">
158
- Generated on Sun Jun 4 13:40:32 2023 by
157
+ Generated on Thu Jun 15 10:09:20 2023 by
159
158
  <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
160
- 0.9.34 (ruby-3.1.0).
159
+ 0.9.34 (ruby-3.0.3).
161
160
  </div>
162
161
 
163
162
  </div>