t 0.6.3 → 0.6.4
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.
- data/README.md +13 -3
- data/lib/t/cli.rb +15 -14
- data/lib/t/delete.rb +3 -2
- data/lib/t/printable.rb +2 -2
- data/lib/t/search.rb +1 -1
- data/lib/t/version.rb +1 -1
- data/spec/cli_spec.rb +124 -123
- data/spec/delete_spec.rb +1 -1
- data/spec/list_spec.rb +21 -21
- data/spec/search_spec.rb +101 -101
- metadata +1 -1
data/README.md
CHANGED
@@ -56,8 +56,8 @@ type `t help TASK` to get help for a specific command.
|
|
56
56
|
### <a name="update"></a>Update your status
|
57
57
|
t update "I'm tweeting from the command line. Isn't that special?"
|
58
58
|
|
59
|
-
Note
|
60
|
-
it in single quotes instead of double quotes, so those characters are not
|
59
|
+
**Note**: If your tweet includes special characters (e.g. `!`), make sure to
|
60
|
+
wrap it in single quotes instead of double quotes, so those characters are not
|
61
61
|
interpreted by your shell.
|
62
62
|
|
63
63
|
### <a name="stats"></a>Retrieve stats about users
|
@@ -76,7 +76,10 @@ interpreted by your shell.
|
|
76
76
|
t leaders | xargs t unfollow
|
77
77
|
|
78
78
|
### Follow back everyone who follows you
|
79
|
-
t
|
79
|
+
t disciples | xargs t follow
|
80
|
+
|
81
|
+
### Follow roulette: randomly follow someone who follows you
|
82
|
+
t disciples | gshuf | head -1 | xargs t follow
|
80
83
|
|
81
84
|
### <a name="list-create"></a>Create a list
|
82
85
|
t list create presidents
|
@@ -114,6 +117,13 @@ interpreted by your shell.
|
|
114
117
|
### <a name="search-user"></a>Search Tweets in a user's timeline that match a specified query
|
115
118
|
t search user @sferik "query"
|
116
119
|
|
120
|
+
## <a name="features"></a>Features
|
121
|
+
* Multithreaded: Whenever possible, Twitter API requests are made in parallel,
|
122
|
+
resulting in faster performance for bulk operations.
|
123
|
+
* Designed for Unix: All output is designed to be piped to other Unix
|
124
|
+
utilities, like grep, cut, awk, bc, wc, and xargs for advanced processing.
|
125
|
+
* 99% C0 Code Coverage: Extremely well tested, with a 3:1 test-to-code ratio.
|
126
|
+
|
117
127
|
## <a name="terminology"></a>Relationship Terminology
|
118
128
|
|
119
129
|
There is some ambiguity in the terminology used to describe relationships on
|
data/lib/t/cli.rb
CHANGED
@@ -105,9 +105,10 @@ module T
|
|
105
105
|
client.block(screen_name, :include_entities => false)
|
106
106
|
end
|
107
107
|
end
|
108
|
-
|
108
|
+
number = screen_names.length
|
109
|
+
say "@#{@rcfile.default_profile[0]} blocked #{number} #{number == 1 ? 'user' : 'users'}."
|
109
110
|
say
|
110
|
-
say "Run `#{File.basename($0)} delete block #{screen_names.join(' ')}` to unblock."
|
111
|
+
say "Run `#{File.basename($0)} delete block #{screen_names.map{|screen_name| "@#{screen_name}"}.join(' ')}` to unblock."
|
111
112
|
end
|
112
113
|
|
113
114
|
desc "direct_messages", "Returns the #{DEFAULT_NUM_RESULTS} most recent Direct Messages sent to you."
|
@@ -121,7 +122,7 @@ module T
|
|
121
122
|
if options['long']
|
122
123
|
array = direct_messages.map do |direct_message|
|
123
124
|
created_at = direct_message.created_at > 6.months.ago ? direct_message.created_at.strftime("%b %e %H:%M") : direct_message.created_at.strftime("%b %e %Y")
|
124
|
-
[
|
125
|
+
[direct_message.id.to_s, created_at, "@#{direct_message.sender.screen_name}", direct_message.text.gsub(/\n+/, ' ')]
|
125
126
|
end
|
126
127
|
if STDOUT.tty?
|
127
128
|
headings = ["ID", "Posted at", "Screen name", "Text"]
|
@@ -147,7 +148,7 @@ module T
|
|
147
148
|
if options['long']
|
148
149
|
array = direct_messages.map do |direct_message|
|
149
150
|
created_at = direct_message.created_at > 6.months.ago ? direct_message.created_at.strftime("%b %e %H:%M") : direct_message.created_at.strftime("%b %e %Y")
|
150
|
-
[
|
151
|
+
[direct_message.id.to_s, created_at, "@#{direct_message.recipient.screen_name}", direct_message.text.gsub(/\n+/, ' ')]
|
151
152
|
end
|
152
153
|
if STDOUT.tty?
|
153
154
|
headings = ["ID", "Posted at", "Screen name", "Text"]
|
@@ -205,9 +206,8 @@ module T
|
|
205
206
|
client.favorite(status_id, :include_entities => false)
|
206
207
|
end
|
207
208
|
end
|
208
|
-
favorites.
|
209
|
-
|
210
|
-
end
|
209
|
+
number = favorites.length
|
210
|
+
say "@#{@rcfile.default_profile[0]} favorited #{number} #{number == 1 ? 'tweet' : 'tweets'}."
|
211
211
|
say
|
212
212
|
say "Run `#{File.basename($0)} delete favorite #{status_ids.join(' ')}` to unfavorite."
|
213
213
|
end
|
@@ -236,7 +236,7 @@ module T
|
|
236
236
|
number = screen_names.length
|
237
237
|
say "@#{@rcfile.default_profile[0]} is now following #{number} more #{number == 1 ? 'user' : 'users'}."
|
238
238
|
say
|
239
|
-
say "Run `#{File.basename($0)} unfollow
|
239
|
+
say "Run `#{File.basename($0)} unfollow #{screen_names.map{|screen_name| "@#{screen_name}"}.join(' ')}` to stop."
|
240
240
|
end
|
241
241
|
|
242
242
|
desc "followings", "Returns a list of the people you follow on Twitter."
|
@@ -376,7 +376,8 @@ module T
|
|
376
376
|
client.report_spam(screen_name, :include_entities => false)
|
377
377
|
end
|
378
378
|
end
|
379
|
-
|
379
|
+
number = screen_names.length
|
380
|
+
say "@#{@rcfile.default_profile[0]} reported #{number} #{number == 1 ? 'user' : 'users'}."
|
380
381
|
end
|
381
382
|
map %w(report spam) => :report_spam
|
382
383
|
|
@@ -389,9 +390,8 @@ module T
|
|
389
390
|
client.retweet(status_id, :include_entities => false, :trim_user => true)
|
390
391
|
end
|
391
392
|
end
|
392
|
-
retweets.
|
393
|
-
|
394
|
-
end
|
393
|
+
number = retweets.length
|
394
|
+
say "@#{@rcfile.default_profile[0]} retweeted #{number} #{number == 1 ? 'tweet' : 'tweets'}."
|
395
395
|
say
|
396
396
|
say "Run `#{File.basename($0)} delete status #{status_ids.join(' ')}` to undo."
|
397
397
|
end
|
@@ -415,6 +415,7 @@ module T
|
|
415
415
|
status = client.status(status_id, :include_entities => false, :include_my_retweet => false)
|
416
416
|
created_at = status.created_at > 6.months.ago ? status.created_at.strftime("%b %e %H:%M") : status.created_at.strftime("%b %e %Y")
|
417
417
|
array = []
|
418
|
+
array << ["ID", status.id.to_s]
|
418
419
|
array << ["Text", status.text.gsub(/\n+/, ' ')]
|
419
420
|
array << ["Screen name", "@#{status.user.screen_name}"]
|
420
421
|
array << ["Posted at", created_at]
|
@@ -479,7 +480,7 @@ module T
|
|
479
480
|
number = screen_names.length
|
480
481
|
say "@#{@rcfile.default_profile[0]} is no longer following #{number} #{number == 1 ? 'user' : 'users'}."
|
481
482
|
say
|
482
|
-
say "Run `#{File.basename($0)} follow
|
483
|
+
say "Run `#{File.basename($0)} follow #{screen_names.map{|screen_name| "@#{screen_name}"}.join(' ')}` to follow again."
|
483
484
|
end
|
484
485
|
|
485
486
|
desc "update MESSAGE", "Post a Tweet."
|
@@ -524,7 +525,7 @@ module T
|
|
524
525
|
user = client.user(screen_name, :include_entities => false)
|
525
526
|
array = []
|
526
527
|
name_label = user.verified ? "Name (Verified)" : "Name"
|
527
|
-
array << ["ID",
|
528
|
+
array << ["ID", user.id.to_s]
|
528
529
|
array << [name_label, user.name] unless user.name.nil?
|
529
530
|
array << ["Bio", user.description.gsub(/\n+/, ' ')] unless user.description.nil?
|
530
531
|
array << ["Location", user.location] unless user.location.nil?
|
data/lib/t/delete.rb
CHANGED
@@ -24,9 +24,10 @@ module T
|
|
24
24
|
client.unblock(screen_name, :include_entities => false)
|
25
25
|
end
|
26
26
|
end
|
27
|
-
|
27
|
+
number = screen_names.length
|
28
|
+
say "@#{@rcfile.default_profile[0]} unblocked #{number} #{number == 1 ? 'user' : 'users'}."
|
28
29
|
say
|
29
|
-
say "Run `#{File.basename($0)} block #{screen_names.join(' ')}` to block."
|
30
|
+
say "Run `#{File.basename($0)} block #{screen_names.map{|screen_name| "@#{screen_name}"}.join(' ')}` to block."
|
30
31
|
end
|
31
32
|
|
32
33
|
desc "dm [DIRECT_MESSAGE_ID] [DIRECT_MESSAGE_ID...]", "Delete the last Direct Message sent."
|
data/lib/t/printable.rb
CHANGED
@@ -25,7 +25,7 @@ module T
|
|
25
25
|
if options['long']
|
26
26
|
array = statuses.map do |status|
|
27
27
|
created_at = status.created_at > 6.months.ago ? status.created_at.strftime("%b %e %H:%M") : status.created_at.strftime("%b %e %Y")
|
28
|
-
[
|
28
|
+
[status.id.to_s, created_at, "@#{status.user.screen_name}", status.text.gsub(/\n+/, ' ')]
|
29
29
|
end
|
30
30
|
if STDOUT.tty?
|
31
31
|
headings = ["ID", "Posted at", "Screen name", "Text"]
|
@@ -58,7 +58,7 @@ module T
|
|
58
58
|
if options['long']
|
59
59
|
array = users.map do |user|
|
60
60
|
created_at = user.created_at > 6.months.ago ? user.created_at.strftime("%b %e %H:%M") : user.created_at.strftime("%b %e %Y")
|
61
|
-
[
|
61
|
+
[user.id.to_s, created_at, number_with_delimiter(user.statuses_count), number_with_delimiter(user.favourites_count), number_with_delimiter(user.listed_count), number_with_delimiter(user.friends_count), number_with_delimiter(user.followers_count), "@#{user.screen_name}", user.name]
|
62
62
|
end
|
63
63
|
if STDOUT.tty?
|
64
64
|
headings = ["ID", "Since", "Tweets", "Favorites", "Listed", "Following", "Followers", "Screen name", "Name"]
|
data/lib/t/search.rb
CHANGED
@@ -32,7 +32,7 @@ module T
|
|
32
32
|
if options['long']
|
33
33
|
array = statuses.map do |status|
|
34
34
|
created_at = status.created_at > 6.months.ago ? status.created_at.strftime("%b %e %H:%M") : status.created_at.strftime("%b %e %Y")
|
35
|
-
[
|
35
|
+
[status.id.to_s, created_at, "@#{status.from_user}", status.text.gsub(/\n+/, ' ')]
|
36
36
|
end
|
37
37
|
if STDOUT.tty?
|
38
38
|
headings = ["ID", "Posted at", "Screen name", "Text"]
|
data/lib/t/version.rb
CHANGED
data/spec/cli_spec.rb
CHANGED
@@ -82,7 +82,7 @@ testcli
|
|
82
82
|
end
|
83
83
|
it "should have the correct output" do
|
84
84
|
@cli.block("sferik")
|
85
|
-
$stdout.string.should =~ /^@testcli blocked
|
85
|
+
$stdout.string.should =~ /^@testcli blocked 1 user/
|
86
86
|
end
|
87
87
|
end
|
88
88
|
|
@@ -120,17 +120,17 @@ testcli
|
|
120
120
|
it "should list in long format" do
|
121
121
|
@cli.direct_messages
|
122
122
|
$stdout.string.should == <<-eos
|
123
|
-
ID
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
123
|
+
ID Posted at Screen name Text
|
124
|
+
1773478249 Oct 17 2010 @sferik Sounds good. Meeting Tuesday is fine.
|
125
|
+
1762960771 Oct 14 2010 @sferik That's great news! Let's plan to chat around 8 AM tomorrow Pacific time. Does that work for you?
|
126
|
+
1711812216 Oct 1 2010 @sferik I asked Yehuda about the stipend. I believe it has already been sent. Glad you're feeling better.
|
127
|
+
1711417617 Oct 1 2010 @sferik Just checking in. How's everything going?
|
128
|
+
1653301471 Sep 16 2010 @sferik Not sure about the payment. Feel free to ask Leah or Yehuda directly. Think you'll be able to finish up your work on graphs this weekend?
|
129
|
+
1645324992 Sep 14 2010 @sferik How are the graph enhancements coming?
|
130
|
+
1632933616 Sep 11 2010 @sferik How are the graphs coming? I'm really looking forward to seeing what you do with Raphaël.
|
131
|
+
1629239903 Sep 10 2010 @sferik Awesome! Any luck duplicating the Gemfile.lock error with Ruby 1.9.2 final?
|
132
|
+
1629166212 Sep 10 2010 @sferik I just committed a bunch of cleanup and fixes to RailsAdmin that touched many of files. Make sure you pull to avoid conflicts.
|
133
|
+
1624782206 Sep 9 2010 @sferik I'm trying to debug the issue you were having with the Bundler Gemfile.lock shortref. What version of Ruby and RubyGems are you running?
|
134
134
|
eos
|
135
135
|
end
|
136
136
|
end
|
@@ -204,17 +204,17 @@ ID Posted at Screen name Text
|
|
204
204
|
it "should list in long format" do
|
205
205
|
@cli.direct_messages_sent
|
206
206
|
$stdout.string.should == <<-eos
|
207
|
-
ID
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
207
|
+
ID Posted at Screen name Text
|
208
|
+
1773478249 Oct 17 2010 @hurrycane Sounds good. Meeting Tuesday is fine.
|
209
|
+
1762960771 Oct 14 2010 @hurrycane That's great news! Let's plan to chat around 8 AM tomorrow Pacific time. Does that work for you?
|
210
|
+
1711812216 Oct 1 2010 @hurrycane I asked Yehuda about the stipend. I believe it has already been sent. Glad you're feeling better.
|
211
|
+
1711417617 Oct 1 2010 @hurrycane Just checking in. How's everything going?
|
212
|
+
1653301471 Sep 16 2010 @hurrycane Not sure about the payment. Feel free to ask Leah or Yehuda directly. Think you'll be able to finish up your work on graphs this weekend?
|
213
|
+
1645324992 Sep 14 2010 @hurrycane How are the graph enhancements coming?
|
214
|
+
1632933616 Sep 11 2010 @hurrycane How are the graphs coming? I'm really looking forward to seeing what you do with Raphaël.
|
215
|
+
1629239903 Sep 10 2010 @hurrycane Awesome! Any luck duplicating the Gemfile.lock error with Ruby 1.9.2 final?
|
216
|
+
1629166212 Sep 10 2010 @hurrycane I just committed a bunch of cleanup and fixes to RailsAdmin that touched many of files. Make sure you pull to avoid conflicts.
|
217
|
+
1624782206 Sep 9 2010 @hurrycane I'm trying to debug the issue you were having with the Bundler Gemfile.lock shortref. What version of Ruby and RubyGems are you running?
|
218
218
|
eos
|
219
219
|
end
|
220
220
|
end
|
@@ -334,9 +334,9 @@ ID Posted at Screen name Text
|
|
334
334
|
it "should list in long format" do
|
335
335
|
@cli.disciples
|
336
336
|
$stdout.string.should == <<-eos
|
337
|
-
ID
|
338
|
-
|
339
|
-
|
337
|
+
ID Since Tweets Favorites Listed Following Followers Screen name Name
|
338
|
+
14100886 Mar 8 2008 3,913 32 185 1,871 2,767 @pengwynn Wynn Netherland
|
339
|
+
7505382 Jul 16 2007 2,962 727 29 88 898 @sferik Erik Michaels-Ober
|
340
340
|
eos
|
341
341
|
end
|
342
342
|
end
|
@@ -392,7 +392,7 @@ ID Since Tweets Favorites Listed Following Followers Scree
|
|
392
392
|
end
|
393
393
|
it "should have the correct output" do
|
394
394
|
@cli.favorite("26755176471724032")
|
395
|
-
$stdout.string.should =~ /^@testcli favorited
|
395
|
+
$stdout.string.should =~ /^@testcli favorited 1 tweet.$/
|
396
396
|
end
|
397
397
|
end
|
398
398
|
|
@@ -437,24 +437,24 @@ ID Since Tweets Favorites Listed Following Followers Scree
|
|
437
437
|
it "should list in long format" do
|
438
438
|
@cli.favorites
|
439
439
|
$stdout.string.should == <<-eos
|
440
|
-
ID
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
440
|
+
ID Posted at Screen name Text
|
441
|
+
194548121416630272 Apr 23 2011 @natevillegas RT @gelobautista #riordan RT @WilI_Smith: Yesterday is history. Tomorrow is a mystery. Today is a gift. That's why it's called the present.
|
442
|
+
194547993607806976 Apr 23 2011 @TD @kelseysilver how long will you be in town?
|
443
|
+
194547987593183233 Apr 23 2011 @rusashka @maciej hahaha :) @gpena together we're going to cover all core 28 languages!
|
444
|
+
194547824690597888 Apr 23 2011 @fat @stevej @xc i'm going to picket when i get back.
|
445
|
+
194547658562605057 Apr 23 2011 @wil @0x9900 @paulnivin http://t.co/bwVdtAPe
|
446
|
+
194547528430137344 Apr 23 2011 @wangtian @tianhonghe @xiangxin72 oh, you can even order specific items?
|
447
|
+
194547402550689793 Apr 23 2011 @shinypb @kpk Pfft, I think you're forgetting mechanical television, which depended on a clever German. http://t.co/JvLNQCDm @skilldrick @hoverbird
|
448
|
+
194547260233760768 Apr 23 2011 @0x9900 @wil @paulnivin if you want to take you seriously don't say daemontools!
|
449
|
+
194547084349804544 Apr 23 2011 @kpk @shinypb @skilldrick @hoverbird invented it
|
450
|
+
194546876782092291 Apr 23 2011 @skilldrick @shinypb Well played :) @hoverbird
|
451
|
+
194546811480969217 Apr 23 2011 @sam Can someone project the date that I'll get a 27" retina display?
|
452
|
+
194546738810458112 Apr 23 2011 @shinypb @skilldrick @hoverbird Wow, I didn't even know they *had* TV in Britain.
|
453
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
454
|
+
194546649203347456 Apr 23 2011 @skilldrick @hoverbird @shinypb You guys must be soooo old, I don't remember the words to the duck tales intro at all.
|
455
|
+
194546583608639488 Apr 23 2011 @sean @mep Thanks for coming by. Was great to have you.
|
456
|
+
194546388707717120 Apr 23 2011 @hoverbird @shinypb @trammell it's all suck a "duck blur" sometimes.
|
457
|
+
194546264212385793 Apr 23 2011 @kelseysilver San Francisco here I come! (@ Newark Liberty International Airport (EWR) w/ 92 others) http://t.co/eoLANJZw
|
458
458
|
eos
|
459
459
|
end
|
460
460
|
end
|
@@ -619,9 +619,9 @@ ID Posted at Screen name Text
|
|
619
619
|
it "should list in long format" do
|
620
620
|
@cli.followings
|
621
621
|
$stdout.string.should == <<-eos
|
622
|
-
ID
|
623
|
-
|
624
|
-
|
622
|
+
ID Since Tweets Favorites Listed Following Followers Screen name Name
|
623
|
+
14100886 Mar 8 2008 3,913 32 185 1,871 2,767 @pengwynn Wynn Netherland
|
624
|
+
7505382 Jul 16 2007 2,962 727 29 88 898 @sferik Erik Michaels-Ober
|
625
625
|
eos
|
626
626
|
end
|
627
627
|
end
|
@@ -719,9 +719,9 @@ ID Since Tweets Favorites Listed Following Followers Scree
|
|
719
719
|
it "should list in long format" do
|
720
720
|
@cli.followers
|
721
721
|
$stdout.string.should == <<-eos
|
722
|
-
ID
|
723
|
-
|
724
|
-
|
722
|
+
ID Since Tweets Favorites Listed Following Followers Screen name Name
|
723
|
+
14100886 Mar 8 2008 3,913 32 185 1,871 2,767 @pengwynn Wynn Netherland
|
724
|
+
7505382 Jul 16 2007 2,962 727 29 88 898 @sferik Erik Michaels-Ober
|
725
725
|
eos
|
726
726
|
end
|
727
727
|
end
|
@@ -825,9 +825,9 @@ ID Since Tweets Favorites Listed Following Followers Scree
|
|
825
825
|
it "should list in long format" do
|
826
826
|
@cli.friends
|
827
827
|
$stdout.string.should == <<-eos
|
828
|
-
ID
|
829
|
-
|
830
|
-
|
828
|
+
ID Since Tweets Favorites Listed Following Followers Screen name Name
|
829
|
+
14100886 Mar 8 2008 3,913 32 185 1,871 2,767 @pengwynn Wynn Netherland
|
830
|
+
7505382 Jul 16 2007 2,962 727 29 88 898 @sferik Erik Michaels-Ober
|
831
831
|
eos
|
832
832
|
end
|
833
833
|
end
|
@@ -931,9 +931,9 @@ ID Since Tweets Favorites Listed Following Followers Scree
|
|
931
931
|
it "should list in long format" do
|
932
932
|
@cli.leaders
|
933
933
|
$stdout.string.should == <<-eos
|
934
|
-
ID
|
935
|
-
|
936
|
-
|
934
|
+
ID Since Tweets Favorites Listed Following Followers Screen name Name
|
935
|
+
14100886 Mar 8 2008 3,913 32 185 1,871 2,767 @pengwynn Wynn Netherland
|
936
|
+
7505382 Jul 16 2007 2,962 727 29 88 898 @sferik Erik Michaels-Ober
|
937
937
|
eos
|
938
938
|
end
|
939
939
|
end
|
@@ -998,24 +998,24 @@ ID Since Tweets Favorites Listed Following Followers Scree
|
|
998
998
|
it "should list in long format" do
|
999
999
|
@cli.mentions
|
1000
1000
|
$stdout.string.should == <<-eos
|
1001
|
-
ID
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1001
|
+
ID Posted at Screen name Text
|
1002
|
+
194548121416630272 Apr 23 2011 @natevillegas RT @gelobautista #riordan RT @WilI_Smith: Yesterday is history. Tomorrow is a mystery. Today is a gift. That's why it's called the present.
|
1003
|
+
194547993607806976 Apr 23 2011 @TD @kelseysilver how long will you be in town?
|
1004
|
+
194547987593183233 Apr 23 2011 @rusashka @maciej hahaha :) @gpena together we're going to cover all core 28 languages!
|
1005
|
+
194547824690597888 Apr 23 2011 @fat @stevej @xc i'm going to picket when i get back.
|
1006
|
+
194547658562605057 Apr 23 2011 @wil @0x9900 @paulnivin http://t.co/bwVdtAPe
|
1007
|
+
194547528430137344 Apr 23 2011 @wangtian @tianhonghe @xiangxin72 oh, you can even order specific items?
|
1008
|
+
194547402550689793 Apr 23 2011 @shinypb @kpk Pfft, I think you're forgetting mechanical television, which depended on a clever German. http://t.co/JvLNQCDm @skilldrick @hoverbird
|
1009
|
+
194547260233760768 Apr 23 2011 @0x9900 @wil @paulnivin if you want to take you seriously don't say daemontools!
|
1010
|
+
194547084349804544 Apr 23 2011 @kpk @shinypb @skilldrick @hoverbird invented it
|
1011
|
+
194546876782092291 Apr 23 2011 @skilldrick @shinypb Well played :) @hoverbird
|
1012
|
+
194546811480969217 Apr 23 2011 @sam Can someone project the date that I'll get a 27" retina display?
|
1013
|
+
194546738810458112 Apr 23 2011 @shinypb @skilldrick @hoverbird Wow, I didn't even know they *had* TV in Britain.
|
1014
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
1015
|
+
194546649203347456 Apr 23 2011 @skilldrick @hoverbird @shinypb You guys must be soooo old, I don't remember the words to the duck tales intro at all.
|
1016
|
+
194546583608639488 Apr 23 2011 @sean @mep Thanks for coming by. Was great to have you.
|
1017
|
+
194546388707717120 Apr 23 2011 @hoverbird @shinypb @trammell it's all suck a "duck blur" sometimes.
|
1018
|
+
194546264212385793 Apr 23 2011 @kelseysilver San Francisco here I come! (@ Newark Liberty International Airport (EWR) w/ 92 others) http://t.co/eoLANJZw
|
1019
1019
|
eos
|
1020
1020
|
end
|
1021
1021
|
end
|
@@ -1121,7 +1121,7 @@ ID Posted at Screen name Text
|
|
1121
1121
|
end
|
1122
1122
|
it "should have the correct output" do
|
1123
1123
|
@cli.report_spam("sferik")
|
1124
|
-
$stdout.string.should =~ /^@testcli reported
|
1124
|
+
$stdout.string.should =~ /^@testcli reported 1 user/
|
1125
1125
|
end
|
1126
1126
|
end
|
1127
1127
|
|
@@ -1138,7 +1138,7 @@ ID Posted at Screen name Text
|
|
1138
1138
|
end
|
1139
1139
|
it "should have the correct output" do
|
1140
1140
|
@cli.retweet("26755176471724032")
|
1141
|
-
$stdout.string.should =~ /^@testcli retweeted
|
1141
|
+
$stdout.string.should =~ /^@testcli retweeted 1 tweet.$/
|
1142
1142
|
end
|
1143
1143
|
end
|
1144
1144
|
|
@@ -1185,24 +1185,24 @@ ID Posted at Screen name Text
|
|
1185
1185
|
it "should list in long format" do
|
1186
1186
|
@cli.retweets
|
1187
1187
|
$stdout.string.should == <<-eos
|
1188
|
-
ID
|
1189
|
-
|
1190
|
-
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1201
|
-
|
1202
|
-
|
1203
|
-
|
1204
|
-
|
1205
|
-
|
1188
|
+
ID Posted at Screen name Text
|
1189
|
+
194548121416630272 Apr 23 2011 @natevillegas RT @gelobautista #riordan RT @WilI_Smith: Yesterday is history. Tomorrow is a mystery. Today is a gift. That's why it's called the present.
|
1190
|
+
194547993607806976 Apr 23 2011 @TD @kelseysilver how long will you be in town?
|
1191
|
+
194547987593183233 Apr 23 2011 @rusashka @maciej hahaha :) @gpena together we're going to cover all core 28 languages!
|
1192
|
+
194547824690597888 Apr 23 2011 @fat @stevej @xc i'm going to picket when i get back.
|
1193
|
+
194547658562605057 Apr 23 2011 @wil @0x9900 @paulnivin http://t.co/bwVdtAPe
|
1194
|
+
194547528430137344 Apr 23 2011 @wangtian @tianhonghe @xiangxin72 oh, you can even order specific items?
|
1195
|
+
194547402550689793 Apr 23 2011 @shinypb @kpk Pfft, I think you're forgetting mechanical television, which depended on a clever German. http://t.co/JvLNQCDm @skilldrick @hoverbird
|
1196
|
+
194547260233760768 Apr 23 2011 @0x9900 @wil @paulnivin if you want to take you seriously don't say daemontools!
|
1197
|
+
194547084349804544 Apr 23 2011 @kpk @shinypb @skilldrick @hoverbird invented it
|
1198
|
+
194546876782092291 Apr 23 2011 @skilldrick @shinypb Well played :) @hoverbird
|
1199
|
+
194546811480969217 Apr 23 2011 @sam Can someone project the date that I'll get a 27" retina display?
|
1200
|
+
194546738810458112 Apr 23 2011 @shinypb @skilldrick @hoverbird Wow, I didn't even know they *had* TV in Britain.
|
1201
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
1202
|
+
194546649203347456 Apr 23 2011 @skilldrick @hoverbird @shinypb You guys must be soooo old, I don't remember the words to the duck tales intro at all.
|
1203
|
+
194546583608639488 Apr 23 2011 @sean @mep Thanks for coming by. Was great to have you.
|
1204
|
+
194546388707717120 Apr 23 2011 @hoverbird @shinypb @trammell it's all suck a "duck blur" sometimes.
|
1205
|
+
194546264212385793 Apr 23 2011 @kelseysilver San Francisco here I come! (@ Newark Liberty International Airport (EWR) w/ 92 others) http://t.co/eoLANJZw
|
1206
1206
|
eos
|
1207
1207
|
end
|
1208
1208
|
end
|
@@ -1299,6 +1299,7 @@ ID Posted at Screen name Text
|
|
1299
1299
|
it "should have the correct output" do
|
1300
1300
|
@cli.status("55709764298092545")
|
1301
1301
|
$stdout.string.should == <<-eos
|
1302
|
+
ID 55709764298092545
|
1302
1303
|
Text The problem with your code is that it's doing exactly what you told it to do.
|
1303
1304
|
Screen name @sferik
|
1304
1305
|
Posted at Apr 6 2011
|
@@ -1377,12 +1378,12 @@ URL https://twitter.com/sferik/status/55709764298092545
|
|
1377
1378
|
it "should list in long format" do
|
1378
1379
|
@cli.suggest
|
1379
1380
|
$stdout.string.should == <<-eos
|
1380
|
-
ID
|
1381
|
-
|
1382
|
-
|
1383
|
-
|
1384
|
-
|
1385
|
-
|
1381
|
+
ID Since Tweets Favorites Listed Following Followers Screen name Name
|
1382
|
+
40514587 May 16 2009 183 2 2 198 158 @antpires AntonioPires
|
1383
|
+
14736332 May 11 2008 3,850 117 99 545 802 @jtrupiano John Trupiano
|
1384
|
+
2006261 Mar 23 2007 4,497 9 171 967 2,028 @maccman Alex MacCaw
|
1385
|
+
14451152 Apr 20 2008 6,251 10 20 403 299 @mlroach Matt Laroche
|
1386
|
+
16052754 Aug 30 2008 24 0 1 5 42 @stuntmann82 stuntmann82
|
1386
1387
|
eos
|
1387
1388
|
end
|
1388
1389
|
end
|
@@ -1463,24 +1464,24 @@ ID Since Tweets Favorites Listed Following Followers Scree
|
|
1463
1464
|
it "should list in long format" do
|
1464
1465
|
@cli.timeline
|
1465
1466
|
$stdout.string.should == <<-eos
|
1466
|
-
ID
|
1467
|
-
|
1468
|
-
|
1469
|
-
|
1470
|
-
|
1471
|
-
|
1472
|
-
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1477
|
-
|
1478
|
-
|
1479
|
-
|
1480
|
-
|
1481
|
-
|
1482
|
-
|
1483
|
-
|
1467
|
+
ID Posted at Screen name Text
|
1468
|
+
194548121416630272 Apr 23 2011 @natevillegas RT @gelobautista #riordan RT @WilI_Smith: Yesterday is history. Tomorrow is a mystery. Today is a gift. That's why it's called the present.
|
1469
|
+
194547993607806976 Apr 23 2011 @TD @kelseysilver how long will you be in town?
|
1470
|
+
194547987593183233 Apr 23 2011 @rusashka @maciej hahaha :) @gpena together we're going to cover all core 28 languages!
|
1471
|
+
194547824690597888 Apr 23 2011 @fat @stevej @xc i'm going to picket when i get back.
|
1472
|
+
194547658562605057 Apr 23 2011 @wil @0x9900 @paulnivin http://t.co/bwVdtAPe
|
1473
|
+
194547528430137344 Apr 23 2011 @wangtian @tianhonghe @xiangxin72 oh, you can even order specific items?
|
1474
|
+
194547402550689793 Apr 23 2011 @shinypb @kpk Pfft, I think you're forgetting mechanical television, which depended on a clever German. http://t.co/JvLNQCDm @skilldrick @hoverbird
|
1475
|
+
194547260233760768 Apr 23 2011 @0x9900 @wil @paulnivin if you want to take you seriously don't say daemontools!
|
1476
|
+
194547084349804544 Apr 23 2011 @kpk @shinypb @skilldrick @hoverbird invented it
|
1477
|
+
194546876782092291 Apr 23 2011 @skilldrick @shinypb Well played :) @hoverbird
|
1478
|
+
194546811480969217 Apr 23 2011 @sam Can someone project the date that I'll get a 27" retina display?
|
1479
|
+
194546738810458112 Apr 23 2011 @shinypb @skilldrick @hoverbird Wow, I didn't even know they *had* TV in Britain.
|
1480
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
1481
|
+
194546649203347456 Apr 23 2011 @skilldrick @hoverbird @shinypb You guys must be soooo old, I don't remember the words to the duck tales intro at all.
|
1482
|
+
194546583608639488 Apr 23 2011 @sean @mep Thanks for coming by. Was great to have you.
|
1483
|
+
194546388707717120 Apr 23 2011 @hoverbird @shinypb @trammell it's all suck a "duck blur" sometimes.
|
1484
|
+
194546264212385793 Apr 23 2011 @kelseysilver San Francisco here I come! (@ Newark Liberty International Airport (EWR) w/ 92 others) http://t.co/eoLANJZw
|
1484
1485
|
eos
|
1485
1486
|
end
|
1486
1487
|
end
|
@@ -1701,9 +1702,9 @@ ID Posted at Screen name Text
|
|
1701
1702
|
it "should list in long format" do
|
1702
1703
|
@cli.users("sferik", "pengwynn")
|
1703
1704
|
$stdout.string.should == <<-eos
|
1704
|
-
ID
|
1705
|
-
|
1706
|
-
|
1705
|
+
ID Since Tweets Favorites Listed Following Followers Screen name Name
|
1706
|
+
14100886 Mar 8 2008 3,913 32 185 1,871 2,767 @pengwynn Wynn Netherland
|
1707
|
+
7505382 Jul 16 2007 2,962 727 29 88 898 @sferik Erik Michaels-Ober
|
1707
1708
|
eos
|
1708
1709
|
end
|
1709
1710
|
end
|
@@ -1749,7 +1750,7 @@ ID Since Tweets Favorites Listed Following Followers Scree
|
|
1749
1750
|
it "should have the correct output" do
|
1750
1751
|
@cli.whois("sferik")
|
1751
1752
|
$stdout.string.should == <<-eos
|
1752
|
-
ID
|
1753
|
+
ID 7505382
|
1753
1754
|
Name Erik Michaels-Ober
|
1754
1755
|
Bio A mind forever voyaging through strange seas of thought, alone.
|
1755
1756
|
Location San Francisco
|
data/spec/delete_spec.rb
CHANGED
data/spec/list_spec.rb
CHANGED
@@ -143,9 +143,9 @@ describe T::List do
|
|
143
143
|
it "should list in long format" do
|
144
144
|
@list.members("presidents")
|
145
145
|
$stdout.string.should == <<-eos
|
146
|
-
ID
|
147
|
-
|
148
|
-
|
146
|
+
ID Since Tweets Favorites Listed Following Followers Screen name Name
|
147
|
+
14100886 Mar 8 2008 3,913 32 185 1,871 2,767 @pengwynn Wynn Netherland
|
148
|
+
7505382 Jul 16 2007 2,962 727 29 88 898 @sferik Erik Michaels-Ober
|
149
149
|
eos
|
150
150
|
end
|
151
151
|
end
|
@@ -266,24 +266,24 @@ ID Since Tweets Favorites Listed Following Followers Scree
|
|
266
266
|
it "should list in long format" do
|
267
267
|
@list.timeline("presidents")
|
268
268
|
$stdout.string.should == <<-eos
|
269
|
-
ID
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
269
|
+
ID Posted at Screen name Text
|
270
|
+
194548121416630272 Apr 23 2011 @natevillegas RT @gelobautista #riordan RT @WilI_Smith: Yesterday is history. Tomorrow is a mystery. Today is a gift. That's why it's called the present.
|
271
|
+
194547993607806976 Apr 23 2011 @TD @kelseysilver how long will you be in town?
|
272
|
+
194547987593183233 Apr 23 2011 @rusashka @maciej hahaha :) @gpena together we're going to cover all core 28 languages!
|
273
|
+
194547824690597888 Apr 23 2011 @fat @stevej @xc i'm going to picket when i get back.
|
274
|
+
194547658562605057 Apr 23 2011 @wil @0x9900 @paulnivin http://t.co/bwVdtAPe
|
275
|
+
194547528430137344 Apr 23 2011 @wangtian @tianhonghe @xiangxin72 oh, you can even order specific items?
|
276
|
+
194547402550689793 Apr 23 2011 @shinypb @kpk Pfft, I think you're forgetting mechanical television, which depended on a clever German. http://t.co/JvLNQCDm @skilldrick @hoverbird
|
277
|
+
194547260233760768 Apr 23 2011 @0x9900 @wil @paulnivin if you want to take you seriously don't say daemontools!
|
278
|
+
194547084349804544 Apr 23 2011 @kpk @shinypb @skilldrick @hoverbird invented it
|
279
|
+
194546876782092291 Apr 23 2011 @skilldrick @shinypb Well played :) @hoverbird
|
280
|
+
194546811480969217 Apr 23 2011 @sam Can someone project the date that I'll get a 27" retina display?
|
281
|
+
194546738810458112 Apr 23 2011 @shinypb @skilldrick @hoverbird Wow, I didn't even know they *had* TV in Britain.
|
282
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
283
|
+
194546649203347456 Apr 23 2011 @skilldrick @hoverbird @shinypb You guys must be soooo old, I don't remember the words to the duck tales intro at all.
|
284
|
+
194546583608639488 Apr 23 2011 @sean @mep Thanks for coming by. Was great to have you.
|
285
|
+
194546388707717120 Apr 23 2011 @hoverbird @shinypb @trammell it's all suck a "duck blur" sometimes.
|
286
|
+
194546264212385793 Apr 23 2011 @kelseysilver San Francisco here I come! (@ Newark Liberty International Airport (EWR) w/ 92 others) http://t.co/eoLANJZw
|
287
287
|
eos
|
288
288
|
end
|
289
289
|
end
|
data/spec/search_spec.rb
CHANGED
@@ -59,22 +59,22 @@ describe T::Search do
|
|
59
59
|
it "should list in long format" do
|
60
60
|
@search.all("twitter")
|
61
61
|
$stdout.string.should == <<-eos
|
62
|
-
ID
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
62
|
+
ID Posted at Screen name Text
|
63
|
+
194521262415032320 Apr 23 2011 @JessRoveel Pondre lo mas importante de Hamlet en Twitter para recordarlo mejor :D
|
64
|
+
194521262326951936 Apr 23 2011 @lauravgeest Twitter doet het al 7 uur niet meer
|
65
|
+
194521262234669056 Apr 23 2011 @Jenny_Bearx333 I keep thinking that twitter is @instagram , and therefore double tap all the pics I like... #NotWorking
|
66
|
+
194521262138204160 Apr 23 2011 @misspoxtonX RT @jordantaylorhi: twitter friends > twats at school
|
67
|
+
194521262134001665 Apr 23 2011 @PatrickBrickman RT @zeus30hightower: Too all Bama fans and followers my cousin mark Barron doesn't have a twitter so please disregard any tweets from that user
|
68
|
+
194521262129811456 Apr 23 2011 @KolonelX Ik refresh twitter op me telefoon terwijl ik tweetdeck voor me open heb staan
|
69
|
+
194521261852995586 Apr 23 2011 @VLGPRLG5 @mikeyway and you too RT @NimcyGD: @gerardway Get your ass back to twitter, okay? :3
|
70
|
+
194521261756530689 Apr 23 2011 @xRhiBabyx Trying to persuade the boyf to get on twitter and failing. Help? @holly_haime @Ckwarburton @samwarburton_ @chrishaime @rowloboy
|
71
|
+
194521261630697473 Apr 23 2011 @juliotrv RT @lookinglassbr: Lançamentos outono-inverno 2012...CONFIRA em http://t.co/YAk8OXp7 http://t.co/fmmrVrbG
|
72
|
+
194521261571964928 Apr 23 2011 @shanleyaustin27 RT @caaammmmi: @shanleyaustin27 .....and this hahahahaa http://t.co/wzCMx6ZU
|
73
|
+
194521261563580416 Apr 23 2011 @Dame_Valuta RT @Paiser10: Great @chelseafc training at Nou Camp! #cfc http://t.co/k00TnRyR
|
74
|
+
194521261488095232 Apr 23 2011 @miss_indyiah smh, @IndianaHustle done turned into a twitter addict..fuck goin on lol ?
|
75
|
+
194521261370650625 Apr 23 2011 @CAROLINEWOLLER RT @Mark_Ingram28: To all Bama fans and followers, please unfollow and pay no attention to any user posing to be Mark Barron. My bro doesn't have a twitter!
|
76
|
+
194521261370642432 Apr 23 2011 @shelbytrenchdww RT @The90sLife: Admit it, we all have a cabinet that looks like this. http://t.co/gQEkQw5G
|
77
|
+
194521261307727872 Apr 23 2011 @kabos84 RT @JF_q8: بالله عليكم ،، مو عيب !!! .. http://t.co/e29GV7Ow
|
78
78
|
eos
|
79
79
|
end
|
80
80
|
end
|
@@ -138,23 +138,23 @@ ID Posted at Screen name Text
|
|
138
138
|
it "should list in long format" do
|
139
139
|
@search.favorites("twitter")
|
140
140
|
$stdout.string.should == <<-eos
|
141
|
-
ID
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
141
|
+
ID Posted at Screen name Text
|
142
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
143
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
144
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
145
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
146
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
147
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
148
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
149
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
150
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
151
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
152
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
153
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
154
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
155
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
156
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
157
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
158
158
|
eos
|
159
159
|
end
|
160
160
|
end
|
@@ -217,23 +217,23 @@ ID Posted at Screen name Text
|
|
217
217
|
it "should list in long format" do
|
218
218
|
@search.mentions("twitter")
|
219
219
|
$stdout.string.should == <<-eos
|
220
|
-
ID
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
220
|
+
ID Posted at Screen name Text
|
221
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
222
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
223
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
224
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
225
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
226
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
227
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
228
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
229
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
230
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
231
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
232
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
233
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
234
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
235
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
236
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
237
237
|
eos
|
238
238
|
end
|
239
239
|
end
|
@@ -296,23 +296,23 @@ ID Posted at Screen name Text
|
|
296
296
|
it "should list in long format" do
|
297
297
|
@search.retweets("twitter")
|
298
298
|
$stdout.string.should == <<-eos
|
299
|
-
ID
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
299
|
+
ID Posted at Screen name Text
|
300
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
301
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
302
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
303
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
304
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
305
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
306
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
307
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
308
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
309
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
310
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
311
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
312
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
313
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
314
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
315
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
316
316
|
eos
|
317
317
|
end
|
318
318
|
end
|
@@ -375,23 +375,23 @@ ID Posted at Screen name Text
|
|
375
375
|
it "should list in long format" do
|
376
376
|
@search.timeline("twitter")
|
377
377
|
$stdout.string.should == <<-eos
|
378
|
-
ID
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
378
|
+
ID Posted at Screen name Text
|
379
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
380
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
381
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
382
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
383
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
384
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
385
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
386
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
387
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
388
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
389
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
390
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
391
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
392
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
393
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
394
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
395
395
|
eos
|
396
396
|
end
|
397
397
|
end
|
@@ -454,23 +454,23 @@ ID Posted at Screen name Text
|
|
454
454
|
it "should list in long format" do
|
455
455
|
@search.user("sferik", "twitter")
|
456
456
|
$stdout.string.should == <<-eos
|
457
|
-
ID
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
457
|
+
ID Posted at Screen name Text
|
458
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
459
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
460
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
461
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
462
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
463
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
464
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
465
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
466
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
467
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
468
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
469
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
470
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
471
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
472
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
473
|
+
194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -> FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
|
474
474
|
eos
|
475
475
|
end
|
476
476
|
end
|