t 4.1.1 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +820 -0
- data/LICENSE.md +1 -1
- data/README.md +3 -3
- data/bin/t +7 -16
- data/lib/t/cli.rb +317 -310
- data/lib/t/collectable.rb +4 -4
- data/lib/t/delete.rb +28 -35
- data/lib/t/list.rb +17 -18
- data/lib/t/printable/messaging.rb +54 -0
- data/lib/t/printable/rendering.rb +100 -0
- data/lib/t/printable.rb +58 -181
- data/lib/t/rcfile.rb +9 -1
- data/lib/t/requestable.rb +13 -7
- data/lib/t/requestable_api/account_endpoints.rb +93 -0
- data/lib/t/requestable_api/dm_endpoints.rb +41 -0
- data/lib/t/requestable_api/dm_helpers.rb +107 -0
- data/lib/t/requestable_api/dm_parsing.rb +76 -0
- data/lib/t/requestable_api/helpers.rb +86 -0
- data/lib/t/requestable_api/http.rb +113 -0
- data/lib/t/requestable_api/list_endpoints.rb +70 -0
- data/lib/t/requestable_api/list_normalization.rb +74 -0
- data/lib/t/requestable_api/mutations.rb +88 -0
- data/lib/t/requestable_api/resolution.rb +108 -0
- data/lib/t/requestable_api/tweet_endpoints.rb +85 -0
- data/lib/t/requestable_api/tweet_normalization.rb +87 -0
- data/lib/t/requestable_api/user_endpoints.rb +82 -0
- data/lib/t/requestable_api/user_normalization.rb +68 -0
- data/lib/t/requestable_api.rb +69 -0
- data/lib/t/search.rb +43 -58
- data/lib/t/set.rb +8 -9
- data/lib/t/stream.rb +91 -131
- data/lib/t/utils.rb +55 -52
- data/lib/t/version.rb +3 -3
- data/t.gemspec +16 -4
- metadata +46 -12
- data/lib/t/core_ext/kernel.rb +0 -13
- data/lib/t/core_ext/string.rb +0 -15
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,820 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [5.0.0] - 2026-03-02
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Replace twitter gem dependency with x gem (~> 0.19)
|
|
13
|
+
- Bump required Ruby version to >= 3.2
|
|
14
|
+
|
|
15
|
+
### Removed
|
|
16
|
+
|
|
17
|
+
- Remove local path override for x gem from Gemfile
|
|
18
|
+
|
|
19
|
+
## [4.2.0] - 2025-04-30
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Update x gem dependency to ~> 0.19
|
|
24
|
+
- Update for Ruby 3.4 compatibility
|
|
25
|
+
- Use `Hash#slice` instead of `select`
|
|
26
|
+
- Specify RuboCop plugins instead of require
|
|
27
|
+
|
|
28
|
+
### Removed
|
|
29
|
+
|
|
30
|
+
- Drop support for Ruby 3.1
|
|
31
|
+
|
|
32
|
+
## [4.1.1] - 2024-04-30
|
|
33
|
+
|
|
34
|
+
### Fixed
|
|
35
|
+
|
|
36
|
+
- Fix bug in bash.rake task
|
|
37
|
+
|
|
38
|
+
## [4.1.0] - 2024-04-30
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- Update x gem dependency to ~> 0.14
|
|
43
|
+
- Update geokit dependency to ~> 1.14
|
|
44
|
+
- Update launchy dependency to ~> 3.0
|
|
45
|
+
- Update thor dependency to ~> 1.3
|
|
46
|
+
- Update oauth dependency to ~> 1.1
|
|
47
|
+
- Use `filter_map` instead of `collect...compact`
|
|
48
|
+
- Use `match?` instead of `=~` when MatchData is not used
|
|
49
|
+
- Use `#key?` instead of `#keys.include?`
|
|
50
|
+
- Favor `unless` over `if` for negative conditions
|
|
51
|
+
|
|
52
|
+
### Added
|
|
53
|
+
|
|
54
|
+
- Add rubocop-performance
|
|
55
|
+
|
|
56
|
+
### Removed
|
|
57
|
+
|
|
58
|
+
- Drop support for Ruby 3.0
|
|
59
|
+
- Remove coveralls dependency
|
|
60
|
+
|
|
61
|
+
## [4.0.0] - 2023-04-30
|
|
62
|
+
|
|
63
|
+
### Changed
|
|
64
|
+
|
|
65
|
+
- Replace twitter gem with x gem (~> 0.8)
|
|
66
|
+
- Update retryable dependency to ~> 3.0
|
|
67
|
+
- Extensive RuboCop compliance improvements
|
|
68
|
+
- `Twitter::Rest::Client#user` now uses GET instead of POST
|
|
69
|
+
- Extract layout from style
|
|
70
|
+
|
|
71
|
+
### Added
|
|
72
|
+
|
|
73
|
+
- Add rb-readline dependency
|
|
74
|
+
|
|
75
|
+
### Removed
|
|
76
|
+
|
|
77
|
+
- Drop support for Ruby < 3.0
|
|
78
|
+
- Remove bundler development dependency
|
|
79
|
+
|
|
80
|
+
## [3.1.0] - 2016-12-24
|
|
81
|
+
|
|
82
|
+
### Changed
|
|
83
|
+
|
|
84
|
+
- Update oauth dependency to ~> 0.5.1
|
|
85
|
+
- Update Bash completion
|
|
86
|
+
|
|
87
|
+
## [3.0.0] - 2016-12-07
|
|
88
|
+
|
|
89
|
+
### Changed
|
|
90
|
+
|
|
91
|
+
- Upgrade twitter dependency to ~> 6.0
|
|
92
|
+
- Update help text for trends
|
|
93
|
+
|
|
94
|
+
### Added
|
|
95
|
+
|
|
96
|
+
- Add support for Ruby 2.3.1
|
|
97
|
+
|
|
98
|
+
### Removed
|
|
99
|
+
|
|
100
|
+
- Drop support for Ruby 1.9.3
|
|
101
|
+
|
|
102
|
+
## [2.10.0] - 2016-01-24
|
|
103
|
+
|
|
104
|
+
### Added
|
|
105
|
+
|
|
106
|
+
- Add `muted` command
|
|
107
|
+
- Support attaching files to replies
|
|
108
|
+
|
|
109
|
+
### Changed
|
|
110
|
+
|
|
111
|
+
- Update twitter dependency to ~> 5.16
|
|
112
|
+
- Update Bash and Zsh completions
|
|
113
|
+
- Make list output flush so it can be piped
|
|
114
|
+
|
|
115
|
+
## [2.9.0] - 2015-01-20
|
|
116
|
+
|
|
117
|
+
### Added
|
|
118
|
+
|
|
119
|
+
- Implement identicons (enabled with `-C icon`)
|
|
120
|
+
- Print a friendly error when running `whoami` without authorizing first
|
|
121
|
+
|
|
122
|
+
### Changed
|
|
123
|
+
|
|
124
|
+
- Update twitter dependency to ~> 5.13
|
|
125
|
+
- Update retryable dependency to ~> 2.0
|
|
126
|
+
- Rename `Twitter::REST::Client::ENDPOINT` to `Twitter::REST::Client::BASE_URL`
|
|
127
|
+
- Rename `Twitter::Status` to `Twitter::Tweet`
|
|
128
|
+
- Moved `remove_account` to subcommand `delete account`
|
|
129
|
+
|
|
130
|
+
### Removed
|
|
131
|
+
|
|
132
|
+
- Require Ruby 1.9.3 or higher
|
|
133
|
+
|
|
134
|
+
## [2.8.0] - 2014-10-30
|
|
135
|
+
|
|
136
|
+
### Added
|
|
137
|
+
|
|
138
|
+
- Support attaching files to replies
|
|
139
|
+
- Add `muted` command
|
|
140
|
+
- Add `does_follow` check for self and same user
|
|
141
|
+
|
|
142
|
+
### Changed
|
|
143
|
+
|
|
144
|
+
- Update twitter dependency to ~> 5.12
|
|
145
|
+
- Make list output flush for piping
|
|
146
|
+
|
|
147
|
+
### Removed
|
|
148
|
+
|
|
149
|
+
- Remove `--no-retweets` and `--no-replies` flags from streaming subcommands
|
|
150
|
+
|
|
151
|
+
## [2.7.0] - 2014-06-20
|
|
152
|
+
|
|
153
|
+
### Changed
|
|
154
|
+
|
|
155
|
+
- Update twitter dependency to ~> 5.11
|
|
156
|
+
- Update rspec test dependency to >= 3
|
|
157
|
+
|
|
158
|
+
### Fixed
|
|
159
|
+
|
|
160
|
+
- Fix typo in ruler option description
|
|
161
|
+
|
|
162
|
+
## [2.6.0] - 2014-05-14
|
|
163
|
+
|
|
164
|
+
### Added
|
|
165
|
+
|
|
166
|
+
- Implement `mute`/`unmute` commands
|
|
167
|
+
- More accurate reach calculation
|
|
168
|
+
|
|
169
|
+
### Changed
|
|
170
|
+
|
|
171
|
+
- Update twitter dependency to ~> 5.9
|
|
172
|
+
- Use predicate methods with question marks
|
|
173
|
+
|
|
174
|
+
### Fixed
|
|
175
|
+
|
|
176
|
+
- Prevent runaway search results
|
|
177
|
+
|
|
178
|
+
## [2.5.0] - 2014-03-10
|
|
179
|
+
|
|
180
|
+
### Added
|
|
181
|
+
|
|
182
|
+
- Add `--no-replies` flag to all streaming methods
|
|
183
|
+
- Add `--no-retweets` flag to all streaming methods
|
|
184
|
+
|
|
185
|
+
### Changed
|
|
186
|
+
|
|
187
|
+
- Update twitter dependency to ~> 5.8
|
|
188
|
+
- Improve matrix output
|
|
189
|
+
|
|
190
|
+
## [2.4.0] - 2014-02-14
|
|
191
|
+
|
|
192
|
+
### Added
|
|
193
|
+
|
|
194
|
+
- Add `whoami` command
|
|
195
|
+
- Add option to stream a list timeline
|
|
196
|
+
- Add `--decode-uris` flag to all streaming methods
|
|
197
|
+
- Bash autocomplete for options and args
|
|
198
|
+
|
|
199
|
+
### Changed
|
|
200
|
+
|
|
201
|
+
- Update twitter dependency to ~> 5.7
|
|
202
|
+
|
|
203
|
+
## [2.3.0] - 2014-01-26
|
|
204
|
+
|
|
205
|
+
### Added
|
|
206
|
+
|
|
207
|
+
- Add `retweets_of_me` command
|
|
208
|
+
- Add relative dates option to more commands
|
|
209
|
+
- Add `intersection` and `followings_following` commands
|
|
210
|
+
|
|
211
|
+
### Changed
|
|
212
|
+
|
|
213
|
+
- Update twitter dependency to ~> 5.6
|
|
214
|
+
- Open a user's Twitter profile, not their website
|
|
215
|
+
|
|
216
|
+
### Fixed
|
|
217
|
+
|
|
218
|
+
- Remove self from reply all
|
|
219
|
+
- Don't pluralize "seconds" if there is only 1 second remaining
|
|
220
|
+
|
|
221
|
+
## [2.2.1] - 2014-01-10
|
|
222
|
+
|
|
223
|
+
### Added
|
|
224
|
+
|
|
225
|
+
- Add `--decode-uris` flag to all timeline methods
|
|
226
|
+
- Add support for Ruby 2.1.0
|
|
227
|
+
|
|
228
|
+
### Changed
|
|
229
|
+
|
|
230
|
+
- Update twitter dependency to ~> 5.5
|
|
231
|
+
- Make `does_follow` method multithreaded
|
|
232
|
+
|
|
233
|
+
### Fixed
|
|
234
|
+
|
|
235
|
+
- Fix bug in user streams
|
|
236
|
+
- Fix bug in streaming search
|
|
237
|
+
|
|
238
|
+
## [2.2.0] - 2013-12-24
|
|
239
|
+
|
|
240
|
+
### Changed
|
|
241
|
+
|
|
242
|
+
- Update for new search interface
|
|
243
|
+
|
|
244
|
+
## [2.1.0] - 2013-12-17
|
|
245
|
+
|
|
246
|
+
### Added
|
|
247
|
+
|
|
248
|
+
- Implement `--relative-dates` CLI flag
|
|
249
|
+
|
|
250
|
+
### Changed
|
|
251
|
+
|
|
252
|
+
- Update twitter dependency to ~> 5.3
|
|
253
|
+
- Update retryable dependency to ~> 1.3
|
|
254
|
+
- Update oauth dependency to ~> 0.4.7
|
|
255
|
+
- Update geokit dependency to ~> 1.7
|
|
256
|
+
- Update launchy dependency to ~> 2.4
|
|
257
|
+
|
|
258
|
+
## [2.0.2] - 2013-12-14
|
|
259
|
+
|
|
260
|
+
### Added
|
|
261
|
+
|
|
262
|
+
- Add RuboCop for code quality enforcement
|
|
263
|
+
- Enforce code coverage minimums
|
|
264
|
+
|
|
265
|
+
### Changed
|
|
266
|
+
|
|
267
|
+
- Only stream Tweets (filter non-tweet events)
|
|
268
|
+
- Update screenshots
|
|
269
|
+
|
|
270
|
+
## [2.0.1] - 2013-11-28
|
|
271
|
+
|
|
272
|
+
### Fixed
|
|
273
|
+
|
|
274
|
+
- Fix comparison of `Twitter::NullObject` with `Time`
|
|
275
|
+
|
|
276
|
+
## [2.0.0] - 2013-11-19
|
|
277
|
+
|
|
278
|
+
### Added
|
|
279
|
+
|
|
280
|
+
- Add `--max-id` and `--since-id` flags to favorites command
|
|
281
|
+
- Add location support with latitude and longitude
|
|
282
|
+
- Add streaming support
|
|
283
|
+
|
|
284
|
+
### Changed
|
|
285
|
+
|
|
286
|
+
- Update for twitter gem v5.0.0
|
|
287
|
+
- Convert to Ruby 1.9 hash syntax
|
|
288
|
+
- Strip newline characters from bios in long format
|
|
289
|
+
- Move `members` under the `list` subcommand
|
|
290
|
+
- Refactor `T::Editor`
|
|
291
|
+
|
|
292
|
+
### Removed
|
|
293
|
+
|
|
294
|
+
- Remove fastercsv dependency
|
|
295
|
+
- Require Ruby 1.9.2 or higher
|
|
296
|
+
|
|
297
|
+
## [1.7.2] - 2013-05-04
|
|
298
|
+
|
|
299
|
+
### Added
|
|
300
|
+
|
|
301
|
+
- Add `--max-id` option to timelines
|
|
302
|
+
- Add Coveralls for code coverage reporting
|
|
303
|
+
|
|
304
|
+
### Fixed
|
|
305
|
+
|
|
306
|
+
- Revert Bash completion due to errors
|
|
307
|
+
|
|
308
|
+
## [1.7.1] - 2013-02-10
|
|
309
|
+
|
|
310
|
+
### Added
|
|
311
|
+
|
|
312
|
+
- Add official support for Ruby 2.0.0
|
|
313
|
+
- Add cryptographic signature for gem verification
|
|
314
|
+
|
|
315
|
+
## [1.7.0] - 2013-02-02
|
|
316
|
+
|
|
317
|
+
### Added
|
|
318
|
+
|
|
319
|
+
- Add `--color` option (replacing `--no-color`)
|
|
320
|
+
- Add Zsh tab completion script
|
|
321
|
+
- Include last Tweet for `list members` command
|
|
322
|
+
- Display seconds until rate limit resets
|
|
323
|
+
|
|
324
|
+
### Changed
|
|
325
|
+
|
|
326
|
+
- Fetch timeline since last Tweet
|
|
327
|
+
- Don't trim user when name is being displayed
|
|
328
|
+
- Move development dependencies into Gemfile
|
|
329
|
+
|
|
330
|
+
## [1.6.0] - 2012-12-16
|
|
331
|
+
|
|
332
|
+
### Added
|
|
333
|
+
|
|
334
|
+
- Add `--long` flag to `status` and `whois` commands
|
|
335
|
+
|
|
336
|
+
## [1.5.1] - 2012-12-08
|
|
337
|
+
|
|
338
|
+
### Changed
|
|
339
|
+
|
|
340
|
+
- Update twitter dependency to ~> 4.4
|
|
341
|
+
|
|
342
|
+
## [1.5.0] - 2012-11-20
|
|
343
|
+
|
|
344
|
+
### Added
|
|
345
|
+
|
|
346
|
+
- Add `decode_urls` option to search and timeline commands
|
|
347
|
+
- Implement `matrix` as a delegator
|
|
348
|
+
|
|
349
|
+
### Changed
|
|
350
|
+
|
|
351
|
+
- Update twitter dependency to ~> 4.2
|
|
352
|
+
- Use `count` parameter with all queries
|
|
353
|
+
|
|
354
|
+
## [1.4.0] - 2012-10-17
|
|
355
|
+
|
|
356
|
+
### Added
|
|
357
|
+
|
|
358
|
+
- Add favorite and reply counts to `status` command
|
|
359
|
+
|
|
360
|
+
### Changed
|
|
361
|
+
|
|
362
|
+
- Improve JSON parsing performance with OJ
|
|
363
|
+
|
|
364
|
+
### Fixed
|
|
365
|
+
|
|
366
|
+
- Display correct status IDs to delete
|
|
367
|
+
|
|
368
|
+
## [1.3.1] - 2012-10-16
|
|
369
|
+
|
|
370
|
+
### Changed
|
|
371
|
+
|
|
372
|
+
- Updates for API v1.1
|
|
373
|
+
- Convert specs to new RSpec expectation syntax
|
|
374
|
+
|
|
375
|
+
## [1.3.0] - 2012-10-07
|
|
376
|
+
|
|
377
|
+
### Changed
|
|
378
|
+
|
|
379
|
+
- Handle new API v1.1 list response format
|
|
380
|
+
|
|
381
|
+
## [1.2.0] - 2012-09-26
|
|
382
|
+
|
|
383
|
+
### Added
|
|
384
|
+
|
|
385
|
+
- Add streaming support for timeline, users, and search methods
|
|
386
|
+
- Add `sort` option to `trend_locations` method
|
|
387
|
+
|
|
388
|
+
### Changed
|
|
389
|
+
|
|
390
|
+
- Update specs for Twitter API v1.1
|
|
391
|
+
- Rename `status` to `Tweet`
|
|
392
|
+
|
|
393
|
+
### Removed
|
|
394
|
+
|
|
395
|
+
- Remove `suggest` task, `rate_limit` task, and media endpoint
|
|
396
|
+
|
|
397
|
+
## [1.1.1] - 2012-09-06
|
|
398
|
+
|
|
399
|
+
### Fixed
|
|
400
|
+
|
|
401
|
+
- Fix typo `trends_locations` -> `trend_locations`
|
|
402
|
+
|
|
403
|
+
## [1.1.0] - 2012-08-26
|
|
404
|
+
|
|
405
|
+
### Added
|
|
406
|
+
|
|
407
|
+
- Add support for images
|
|
408
|
+
- Add indentation option to `ruler`
|
|
409
|
+
- Add support for partial matches when setting username
|
|
410
|
+
|
|
411
|
+
## [1.0.1] - 2012-08-14
|
|
412
|
+
|
|
413
|
+
### Fixed
|
|
414
|
+
|
|
415
|
+
- Don't use Ruby keyword as method name
|
|
416
|
+
|
|
417
|
+
## [1.0.0] - 2012-08-14
|
|
418
|
+
|
|
419
|
+
### Added
|
|
420
|
+
|
|
421
|
+
- Add optional user argument to `retweets` and `favorites`
|
|
422
|
+
- Display and allow sorting by last Tweet time
|
|
423
|
+
- Add `change sort` flag to enum
|
|
424
|
+
|
|
425
|
+
### Changed
|
|
426
|
+
|
|
427
|
+
- Update twitter dependency to ~> 3.4
|
|
428
|
+
- Merge `T::FormatHelper` and `T::RequestHelpers` into `T::Utils`
|
|
429
|
+
- Rewrite authorization copy with interactive setup
|
|
430
|
+
- Update tweetstream dependency to version 2.0
|
|
431
|
+
|
|
432
|
+
### Removed
|
|
433
|
+
|
|
434
|
+
- Remove remaining dependency on activesupport
|
|
435
|
+
- Remove twitter-text dependency
|
|
436
|
+
|
|
437
|
+
## [0.9.9] - 2012-05-25
|
|
438
|
+
|
|
439
|
+
### Changed
|
|
440
|
+
|
|
441
|
+
- Pass `Twitter::List` object directly to `#list_destroy` method
|
|
442
|
+
- Don't lazy-require oauth or twitter since they are required for error handling
|
|
443
|
+
|
|
444
|
+
## [0.9.8] - 2012-05-23
|
|
445
|
+
|
|
446
|
+
### Changed
|
|
447
|
+
|
|
448
|
+
- Autoload all classes
|
|
449
|
+
- Simplify `distance_of_time_in_words_to_now`
|
|
450
|
+
|
|
451
|
+
### Fixed
|
|
452
|
+
|
|
453
|
+
- Fix max collect ID when API returns fewer results than expected
|
|
454
|
+
|
|
455
|
+
## [0.9.7] - 2012-05-20
|
|
456
|
+
|
|
457
|
+
### Added
|
|
458
|
+
|
|
459
|
+
- Add long formatting to streaming commands
|
|
460
|
+
- Show relative time
|
|
461
|
+
|
|
462
|
+
### Changed
|
|
463
|
+
|
|
464
|
+
- Update twitter gem dependency
|
|
465
|
+
- Use `Twitter::Status#full_text` instead of `Twitter::Status#text`
|
|
466
|
+
|
|
467
|
+
### Removed
|
|
468
|
+
|
|
469
|
+
- Remove dependency on Action View
|
|
470
|
+
- Remove dependency on activesupport
|
|
471
|
+
|
|
472
|
+
### Fixed
|
|
473
|
+
|
|
474
|
+
- Fix bug in undo instructions
|
|
475
|
+
- Fix tests in timezones other than PST
|
|
476
|
+
|
|
477
|
+
## [0.9.6] - 2012-05-07
|
|
478
|
+
|
|
479
|
+
### Added
|
|
480
|
+
|
|
481
|
+
- Add `user search` command
|
|
482
|
+
- Add `rate_limit` command
|
|
483
|
+
- Create top-level alias for `T::Stream#matrix`
|
|
484
|
+
|
|
485
|
+
### Changed
|
|
486
|
+
|
|
487
|
+
- Factor common methods for printing and formatting
|
|
488
|
+
|
|
489
|
+
## [0.9.5] - 2012-05-06
|
|
490
|
+
|
|
491
|
+
### Added
|
|
492
|
+
|
|
493
|
+
- Add support for getting more than 200 results from multiple APIs
|
|
494
|
+
|
|
495
|
+
### Changed
|
|
496
|
+
|
|
497
|
+
- Lazy require geokit and launchy
|
|
498
|
+
|
|
499
|
+
## [0.9.4] - 2012-05-02
|
|
500
|
+
|
|
501
|
+
### Changed
|
|
502
|
+
|
|
503
|
+
- Lazy require twitter-text
|
|
504
|
+
|
|
505
|
+
## [0.9.3] - 2012-05-01
|
|
506
|
+
|
|
507
|
+
### Fixed
|
|
508
|
+
|
|
509
|
+
- Fix bug in CSV streaming output
|
|
510
|
+
|
|
511
|
+
## [0.9.2] - 2012-05-01
|
|
512
|
+
|
|
513
|
+
### Added
|
|
514
|
+
|
|
515
|
+
- Add `--csv` option to stream commands
|
|
516
|
+
- Use tweetstream gem
|
|
517
|
+
|
|
518
|
+
## [0.9.1] - 2012-05-01
|
|
519
|
+
|
|
520
|
+
### Changed
|
|
521
|
+
|
|
522
|
+
- Show last 20 results before starting to stream
|
|
523
|
+
|
|
524
|
+
## [0.9.0] - 2012-05-01
|
|
525
|
+
|
|
526
|
+
### Added
|
|
527
|
+
|
|
528
|
+
- Add `search list` command
|
|
529
|
+
- Add streaming to timeline method
|
|
530
|
+
|
|
531
|
+
### Changed
|
|
532
|
+
|
|
533
|
+
- Rename streaming commands
|
|
534
|
+
- Decode HTML entities
|
|
535
|
+
- Make search formatting consistent with other status formatting
|
|
536
|
+
- Move authorization code into a module
|
|
537
|
+
|
|
538
|
+
### Removed
|
|
539
|
+
|
|
540
|
+
- Remove date from status formatting
|
|
541
|
+
|
|
542
|
+
## [0.8.3] - 2012-04-29
|
|
543
|
+
|
|
544
|
+
### Changed
|
|
545
|
+
|
|
546
|
+
- Replace paging with cursoring
|
|
547
|
+
|
|
548
|
+
## [0.8.2] - 2012-04-29
|
|
549
|
+
|
|
550
|
+
### Changed
|
|
551
|
+
|
|
552
|
+
- Truncate unpiped table output so it never wraps
|
|
553
|
+
|
|
554
|
+
## [0.8.1] - 2012-04-28
|
|
555
|
+
|
|
556
|
+
### Fixed
|
|
557
|
+
|
|
558
|
+
- Make no-color output consistent with color output
|
|
559
|
+
- Fix typo
|
|
560
|
+
|
|
561
|
+
## [0.8.0] - 2012-04-27
|
|
562
|
+
|
|
563
|
+
### Added
|
|
564
|
+
|
|
565
|
+
- Colored timeline output
|
|
566
|
+
|
|
567
|
+
### Changed
|
|
568
|
+
|
|
569
|
+
- Rename default profile to active profile
|
|
570
|
+
- Write `~/.rcfile` with correct permissions
|
|
571
|
+
|
|
572
|
+
## [0.7.0] - 2012-04-26
|
|
573
|
+
|
|
574
|
+
### Added
|
|
575
|
+
|
|
576
|
+
- Add `lists` command
|
|
577
|
+
- Add CSV output flag for information views
|
|
578
|
+
- Add `list information` command
|
|
579
|
+
- Add `does_contain` and `does_follow` commands
|
|
580
|
+
- Add `trends` and `trend_locations` commands
|
|
581
|
+
- Add `reply --all` flag
|
|
582
|
+
- Add 140-character `ruler`
|
|
583
|
+
- Add `--status` and `--id` flags
|
|
584
|
+
- Add aliases for British English
|
|
585
|
+
|
|
586
|
+
### Changed
|
|
587
|
+
|
|
588
|
+
- Rename `--dry_run` flag to `--display_url`
|
|
589
|
+
- Allow user to specify list by ID instead of slug
|
|
590
|
+
- Rename `--created` flag to `--posted`
|
|
591
|
+
- Delimit lists from owners with slash
|
|
592
|
+
|
|
593
|
+
## [0.6.4] - 2012-04-24
|
|
594
|
+
|
|
595
|
+
### Added
|
|
596
|
+
|
|
597
|
+
- Add follow roulette
|
|
598
|
+
|
|
599
|
+
### Changed
|
|
600
|
+
|
|
601
|
+
- Remove commas from IDs
|
|
602
|
+
- Clean up output formatting
|
|
603
|
+
|
|
604
|
+
## [0.6.3] - 2012-04-24
|
|
605
|
+
|
|
606
|
+
### Added
|
|
607
|
+
|
|
608
|
+
- Add `disciples` method (followers minus friends)
|
|
609
|
+
|
|
610
|
+
### Changed
|
|
611
|
+
|
|
612
|
+
- More consistent use of @ signs
|
|
613
|
+
- Don't trim user when fetching status to reply to
|
|
614
|
+
|
|
615
|
+
## [0.6.2] - 2012-04-24
|
|
616
|
+
|
|
617
|
+
### Changed
|
|
618
|
+
|
|
619
|
+
- Don't depend on Git to list files
|
|
620
|
+
|
|
621
|
+
## [0.6.1] - 2012-04-24
|
|
622
|
+
|
|
623
|
+
### Changed
|
|
624
|
+
|
|
625
|
+
- Make formatting more consistent
|
|
626
|
+
|
|
627
|
+
## [0.6.0] - 2012-04-24
|
|
628
|
+
|
|
629
|
+
### Added
|
|
630
|
+
|
|
631
|
+
- Add `status` method
|
|
632
|
+
|
|
633
|
+
### Changed
|
|
634
|
+
|
|
635
|
+
- Update `status` and `whois` formatting
|
|
636
|
+
- Add commas to all numbers
|
|
637
|
+
- Update delete DM command to take IDs
|
|
638
|
+
- Update twitter dependency to version 2.2.3
|
|
639
|
+
|
|
640
|
+
## [0.5.1] - 2012-04-22
|
|
641
|
+
|
|
642
|
+
### Added
|
|
643
|
+
|
|
644
|
+
- Display listed count
|
|
645
|
+
|
|
646
|
+
## [0.5.0] - 2012-04-22
|
|
647
|
+
|
|
648
|
+
### Changed
|
|
649
|
+
|
|
650
|
+
- Major refactoring for version 0.5
|
|
651
|
+
|
|
652
|
+
### Removed
|
|
653
|
+
|
|
654
|
+
- Remove JRuby support
|
|
655
|
+
|
|
656
|
+
## [0.4.0] - 2012-03-30
|
|
657
|
+
|
|
658
|
+
### Added
|
|
659
|
+
|
|
660
|
+
- Add method to search mentions, favorites, and retweets
|
|
661
|
+
- Add `retweets` method
|
|
662
|
+
|
|
663
|
+
### Changed
|
|
664
|
+
|
|
665
|
+
- Use OJ instead of YAJL for fast JSON parsing
|
|
666
|
+
- Factor request methods and constants into module
|
|
667
|
+
|
|
668
|
+
### Removed
|
|
669
|
+
|
|
670
|
+
- Remove REE support
|
|
671
|
+
|
|
672
|
+
## [0.3.1] - 2012-01-28
|
|
673
|
+
|
|
674
|
+
### Added
|
|
675
|
+
|
|
676
|
+
- Add ID to `whois` output
|
|
677
|
+
|
|
678
|
+
### Changed
|
|
679
|
+
|
|
680
|
+
- Update twitter dependency to version 2.1
|
|
681
|
+
- Set location off by default
|
|
682
|
+
- Replace `run_pager` method with pager gem
|
|
683
|
+
|
|
684
|
+
## [0.3.0] - 2012-01-02
|
|
685
|
+
|
|
686
|
+
### Changed
|
|
687
|
+
|
|
688
|
+
- Replace custom retryable implementation with gem
|
|
689
|
+
- Move collection into a module and use recursion
|
|
690
|
+
- Retry 3 times when Twitter is down
|
|
691
|
+
- Allow user to pass number to DM methods
|
|
692
|
+
- Make search methods multithreaded
|
|
693
|
+
- Move search into its own namespace
|
|
694
|
+
- Flatten namespace by one level
|
|
695
|
+
|
|
696
|
+
## [0.2.1] - 2011-12-26
|
|
697
|
+
|
|
698
|
+
### Changed
|
|
699
|
+
|
|
700
|
+
- Perform iterations of Twitter API requests in separate threads
|
|
701
|
+
|
|
702
|
+
## [0.2.0] - 2011-12-18
|
|
703
|
+
|
|
704
|
+
### Added
|
|
705
|
+
|
|
706
|
+
- Add methods for bulk list deletion and addition
|
|
707
|
+
- Add method for list timeline
|
|
708
|
+
- Add methods to add/remove users to/from a list
|
|
709
|
+
- Add method to create/delete a list
|
|
710
|
+
- Add method to follow/unfollow all members of a list
|
|
711
|
+
- Add `follow`/`unfollow all` commands
|
|
712
|
+
- Add `search` and `favorites` support
|
|
713
|
+
|
|
714
|
+
### Changed
|
|
715
|
+
|
|
716
|
+
- Rename `user_name` to `screen_name`
|
|
717
|
+
- Always exclude entities
|
|
718
|
+
- Move `follow` and `unfollow` into subcommands
|
|
719
|
+
|
|
720
|
+
## [0.1.0] - 2011-12-10
|
|
721
|
+
|
|
722
|
+
### Added
|
|
723
|
+
|
|
724
|
+
- Add the ability to delete statuses and direct messages
|
|
725
|
+
- Add git-style automatic paging
|
|
726
|
+
- Add support for alternative Ruby implementations
|
|
727
|
+
- Add simplecov for test coverage
|
|
728
|
+
|
|
729
|
+
### Changed
|
|
730
|
+
|
|
731
|
+
- Remove Active Support dependency and add Ruby 1.8 compatibility
|
|
732
|
+
- Convert all tests to RSpec
|
|
733
|
+
- Improve error handling
|
|
734
|
+
- Strip at-signs from usernames
|
|
735
|
+
- Indicate which account created a Tweet or Direct Message
|
|
736
|
+
- Move `unfavorite` and `unblock` into `delete` subcommand
|
|
737
|
+
|
|
738
|
+
## [0.0.2] - 2011-12-02
|
|
739
|
+
|
|
740
|
+
### Added
|
|
741
|
+
|
|
742
|
+
- Alias `favorite` to `fave`
|
|
743
|
+
|
|
744
|
+
### Changed
|
|
745
|
+
|
|
746
|
+
- Bubble up error messages from the twitter gem
|
|
747
|
+
- Allow switching of accounts with just username
|
|
748
|
+
- Require yajl for faster JSON parsing
|
|
749
|
+
|
|
750
|
+
## [0.0.1] - 2011-11-22
|
|
751
|
+
|
|
752
|
+
### Added
|
|
753
|
+
|
|
754
|
+
- Initial release
|
|
755
|
+
|
|
756
|
+
[5.0.0]: https://github.com/sferik/t-ruby/compare/v4.2.0...v5.0.0
|
|
757
|
+
[4.2.0]: https://github.com/sferik/t-ruby/compare/v4.1.1...v4.2.0
|
|
758
|
+
[4.1.1]: https://github.com/sferik/t-ruby/compare/v4.1.0...v4.1.1
|
|
759
|
+
[4.1.0]: https://github.com/sferik/t-ruby/compare/v4.0.0...v4.1.0
|
|
760
|
+
[4.0.0]: https://github.com/sferik/t-ruby/compare/v3.1.0...v4.0.0
|
|
761
|
+
[3.1.0]: https://github.com/sferik/t-ruby/compare/v3.0.0...v3.1.0
|
|
762
|
+
[3.0.0]: https://github.com/sferik/t-ruby/compare/v2.10.0...v3.0.0
|
|
763
|
+
[2.10.0]: https://github.com/sferik/t-ruby/compare/v2.9.0...v2.10.0
|
|
764
|
+
[2.9.0]: https://github.com/sferik/t-ruby/compare/v2.8.0...v2.9.0
|
|
765
|
+
[2.8.0]: https://github.com/sferik/t-ruby/compare/v2.7.0...v2.8.0
|
|
766
|
+
[2.7.0]: https://github.com/sferik/t-ruby/compare/v2.6.0...v2.7.0
|
|
767
|
+
[2.6.0]: https://github.com/sferik/t-ruby/compare/v2.5.0...v2.6.0
|
|
768
|
+
[2.5.0]: https://github.com/sferik/t-ruby/compare/v2.4.0...v2.5.0
|
|
769
|
+
[2.4.0]: https://github.com/sferik/t-ruby/compare/v2.3.0...v2.4.0
|
|
770
|
+
[2.3.0]: https://github.com/sferik/t-ruby/compare/v2.2.1...v2.3.0
|
|
771
|
+
[2.2.1]: https://github.com/sferik/t-ruby/compare/v2.2.0...v2.2.1
|
|
772
|
+
[2.2.0]: https://github.com/sferik/t-ruby/compare/v2.1.0...v2.2.0
|
|
773
|
+
[2.1.0]: https://github.com/sferik/t-ruby/compare/v2.0.2...v2.1.0
|
|
774
|
+
[2.0.2]: https://github.com/sferik/t-ruby/compare/v2.0.1...v2.0.2
|
|
775
|
+
[2.0.1]: https://github.com/sferik/t-ruby/compare/v2.0.0...v2.0.1
|
|
776
|
+
[2.0.0]: https://github.com/sferik/t-ruby/compare/v1.7.2...v2.0.0
|
|
777
|
+
[1.7.2]: https://github.com/sferik/t-ruby/compare/v1.7.1...v1.7.2
|
|
778
|
+
[1.7.1]: https://github.com/sferik/t-ruby/compare/v1.7.0...v1.7.1
|
|
779
|
+
[1.7.0]: https://github.com/sferik/t-ruby/compare/v1.6.0...v1.7.0
|
|
780
|
+
[1.6.0]: https://github.com/sferik/t-ruby/compare/v1.5.1...v1.6.0
|
|
781
|
+
[1.5.1]: https://github.com/sferik/t-ruby/compare/v1.5.0...v1.5.1
|
|
782
|
+
[1.5.0]: https://github.com/sferik/t-ruby/compare/v1.4.0...v1.5.0
|
|
783
|
+
[1.4.0]: https://github.com/sferik/t-ruby/compare/v1.3.1...v1.4.0
|
|
784
|
+
[1.3.1]: https://github.com/sferik/t-ruby/compare/v1.3.0...v1.3.1
|
|
785
|
+
[1.3.0]: https://github.com/sferik/t-ruby/compare/v1.2.0...v1.3.0
|
|
786
|
+
[1.2.0]: https://github.com/sferik/t-ruby/compare/v1.1.1...v1.2.0
|
|
787
|
+
[1.1.1]: https://github.com/sferik/t-ruby/compare/v1.1.0...v1.1.1
|
|
788
|
+
[1.1.0]: https://github.com/sferik/t-ruby/compare/v1.0.1...v1.1.0
|
|
789
|
+
[1.0.1]: https://github.com/sferik/t-ruby/compare/v1.0.0...v1.0.1
|
|
790
|
+
[1.0.0]: https://github.com/sferik/t-ruby/compare/v0.9.9...v1.0.0
|
|
791
|
+
[0.9.9]: https://github.com/sferik/t-ruby/compare/v0.9.8...v0.9.9
|
|
792
|
+
[0.9.8]: https://github.com/sferik/t-ruby/compare/v0.9.7...v0.9.8
|
|
793
|
+
[0.9.7]: https://github.com/sferik/t-ruby/compare/v0.9.6...v0.9.7
|
|
794
|
+
[0.9.6]: https://github.com/sferik/t-ruby/compare/v0.9.5...v0.9.6
|
|
795
|
+
[0.9.5]: https://github.com/sferik/t-ruby/compare/v0.9.4...v0.9.5
|
|
796
|
+
[0.9.4]: https://github.com/sferik/t-ruby/compare/v0.9.3...v0.9.4
|
|
797
|
+
[0.9.3]: https://github.com/sferik/t-ruby/compare/v0.9.2...v0.9.3
|
|
798
|
+
[0.9.2]: https://github.com/sferik/t-ruby/compare/v0.9.1...v0.9.2
|
|
799
|
+
[0.9.1]: https://github.com/sferik/t-ruby/compare/v0.9.0...v0.9.1
|
|
800
|
+
[0.9.0]: https://github.com/sferik/t-ruby/compare/v0.8.3...v0.9.0
|
|
801
|
+
[0.8.3]: https://github.com/sferik/t-ruby/compare/v0.8.2...v0.8.3
|
|
802
|
+
[0.8.2]: https://github.com/sferik/t-ruby/compare/v0.8.1...v0.8.2
|
|
803
|
+
[0.8.1]: https://github.com/sferik/t-ruby/compare/v0.8.0...v0.8.1
|
|
804
|
+
[0.8.0]: https://github.com/sferik/t-ruby/compare/v0.7.0...v0.8.0
|
|
805
|
+
[0.7.0]: https://github.com/sferik/t-ruby/compare/v0.6.4...v0.7.0
|
|
806
|
+
[0.6.4]: https://github.com/sferik/t-ruby/compare/v0.6.3...v0.6.4
|
|
807
|
+
[0.6.3]: https://github.com/sferik/t-ruby/compare/v0.6.2...v0.6.3
|
|
808
|
+
[0.6.2]: https://github.com/sferik/t-ruby/compare/v0.6.1...v0.6.2
|
|
809
|
+
[0.6.1]: https://github.com/sferik/t-ruby/compare/v0.6.0...v0.6.1
|
|
810
|
+
[0.6.0]: https://github.com/sferik/t-ruby/compare/v0.5.1...v0.6.0
|
|
811
|
+
[0.5.1]: https://github.com/sferik/t-ruby/compare/v0.5.0...v0.5.1
|
|
812
|
+
[0.5.0]: https://github.com/sferik/t-ruby/compare/v0.4.0...v0.5.0
|
|
813
|
+
[0.4.0]: https://github.com/sferik/t-ruby/compare/v0.3.1...v0.4.0
|
|
814
|
+
[0.3.1]: https://github.com/sferik/t-ruby/compare/v0.3.0...v0.3.1
|
|
815
|
+
[0.3.0]: https://github.com/sferik/t-ruby/compare/v0.2.1...v0.3.0
|
|
816
|
+
[0.2.1]: https://github.com/sferik/t-ruby/compare/v0.2.0...v0.2.1
|
|
817
|
+
[0.2.0]: https://github.com/sferik/t-ruby/compare/v0.1.0...v0.2.0
|
|
818
|
+
[0.1.0]: https://github.com/sferik/t-ruby/compare/v0.0.2...v0.1.0
|
|
819
|
+
[0.0.2]: https://github.com/sferik/t-ruby/compare/v0.0.1...v0.0.2
|
|
820
|
+
[0.0.1]: https://github.com/sferik/t-ruby/releases/tag/v0.0.1
|