t 0.6.3 → 0.6.4

Sign up to get free protection for your applications and to get access to all the features.
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: If your tweet includes characters such as `@` or `!`, make sure to wrap
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 followers | xargs t follow
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
@@ -105,9 +105,10 @@ module T
105
105
  client.block(screen_name, :include_entities => false)
106
106
  end
107
107
  end
108
- say "@#{@rcfile.default_profile[0]} blocked @#{screen_names.join(' ')}."
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
- [number_with_delimiter(direct_message.id), created_at, "@#{direct_message.sender.screen_name}", direct_message.text.gsub(/\n+/, ' ')]
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
- [number_with_delimiter(direct_message.id), created_at, "@#{direct_message.recipient.screen_name}", direct_message.text.gsub(/\n+/, ' ')]
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.each do |status|
209
- say "@#{@rcfile.default_profile[0]} favorited @#{status.user.screen_name}'s status: \"#{status.text.gsub(/\n+/, ' ')}\""
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 users #{screen_names.join(' ')}` to stop."
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
- say "@#{@rcfile.default_profile[0]} reported @#{screen_names.join(' ')}."
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.each do |status|
393
- say "@#{@rcfile.default_profile[0]} retweeted @#{status.user.screen_name}'s status: \"#{status.text.gsub(/\n+/, ' ')}\""
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 users #{screen_names.join(' ')}` to follow again."
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", number_with_delimiter(user.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?
@@ -24,9 +24,10 @@ module T
24
24
  client.unblock(screen_name, :include_entities => false)
25
25
  end
26
26
  end
27
- say "@#{@rcfile.default_profile[0]} unblocked @#{screen_names.join(' ')}."
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."
@@ -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
- [number_with_delimiter(status.id), created_at, "@#{status.user.screen_name}", status.text.gsub(/\n+/, ' ')]
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
- [number_with_delimiter(user.id), 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]
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"]
@@ -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
- [number_with_delimiter(status.id), created_at, "@#{status.from_user}", status.text.gsub(/\n+/, ' ')]
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"]
@@ -13,7 +13,7 @@ module T
13
13
 
14
14
  # @return [Integer]
15
15
  def self.patch
16
- 3
16
+ 4
17
17
  end
18
18
 
19
19
  # @return [String, NilClass]
@@ -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 @sferik/
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 Posted at Screen name Text
124
- 1,773,478,249 Oct 17 2010 @sferik Sounds good. Meeting Tuesday is fine.
125
- 1,762,960,771 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
- 1,711,812,216 Oct 1 2010 @sferik I asked Yehuda about the stipend. I believe it has already been sent. Glad you're feeling better.
127
- 1,711,417,617 Oct 1 2010 @sferik Just checking in. How's everything going?
128
- 1,653,301,471 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
- 1,645,324,992 Sep 14 2010 @sferik How are the graph enhancements coming?
130
- 1,632,933,616 Sep 11 2010 @sferik How are the graphs coming? I'm really looking forward to seeing what you do with Raphaël.
131
- 1,629,239,903 Sep 10 2010 @sferik Awesome! Any luck duplicating the Gemfile.lock error with Ruby 1.9.2 final?
132
- 1,629,166,212 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
- 1,624,782,206 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?
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 Posted at Screen name Text
208
- 1,773,478,249 Oct 17 2010 @hurrycane Sounds good. Meeting Tuesday is fine.
209
- 1,762,960,771 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
- 1,711,812,216 Oct 1 2010 @hurrycane I asked Yehuda about the stipend. I believe it has already been sent. Glad you're feeling better.
211
- 1,711,417,617 Oct 1 2010 @hurrycane Just checking in. How's everything going?
212
- 1,653,301,471 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
- 1,645,324,992 Sep 14 2010 @hurrycane How are the graph enhancements coming?
214
- 1,632,933,616 Sep 11 2010 @hurrycane How are the graphs coming? I'm really looking forward to seeing what you do with Raphaël.
215
- 1,629,239,903 Sep 10 2010 @hurrycane Awesome! Any luck duplicating the Gemfile.lock error with Ruby 1.9.2 final?
216
- 1,629,166,212 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
- 1,624,782,206 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?
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 Since Tweets Favorites Listed Following Followers Screen name Name
338
- 14,100,886 Mar 8 2008 3,913 32 185 1,871 2,767 @pengwynn Wynn Netherland
339
- 7,505,382 Jul 16 2007 2,962 727 29 88 898 @sferik Erik Michaels-Ober
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 @sferik's status: "The problem with your code is that it's doing exactly what you told it to do\.\"$/
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 Posted at Screen name Text
441
- 194,548,121,416,630,272 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
- 194,547,993,607,806,976 Apr 23 2011 @TD @kelseysilver how long will you be in town?
443
- 194,547,987,593,183,233 Apr 23 2011 @rusashka @maciej hahaha :) @gpena together we're going to cover all core 28 languages!
444
- 194,547,824,690,597,888 Apr 23 2011 @fat @stevej @xc i'm going to picket when i get back.
445
- 194,547,658,562,605,057 Apr 23 2011 @wil @0x9900 @paulnivin http://t.co/bwVdtAPe
446
- 194,547,528,430,137,344 Apr 23 2011 @wangtian @tianhonghe @xiangxin72 oh, you can even order specific items?
447
- 194,547,402,550,689,793 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
- 194,547,260,233,760,768 Apr 23 2011 @0x9900 @wil @paulnivin if you want to take you seriously don't say daemontools!
449
- 194,547,084,349,804,544 Apr 23 2011 @kpk @shinypb @skilldrick @hoverbird invented it
450
- 194,546,876,782,092,291 Apr 23 2011 @skilldrick @shinypb Well played :) @hoverbird
451
- 194,546,811,480,969,217 Apr 23 2011 @sam Can someone project the date that I'll get a 27" retina display?
452
- 194,546,738,810,458,112 Apr 23 2011 @shinypb @skilldrick @hoverbird Wow, I didn't even know they *had* TV in Britain.
453
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
454
- 194,546,649,203,347,456 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
- 194,546,583,608,639,488 Apr 23 2011 @sean @mep Thanks for coming by. Was great to have you.
456
- 194,546,388,707,717,120 Apr 23 2011 @hoverbird @shinypb @trammell it's all suck a "duck blur" sometimes.
457
- 194,546,264,212,385,793 Apr 23 2011 @kelseysilver San Francisco here I come! (@ Newark Liberty International Airport (EWR) w/ 92 others) http://t.co/eoLANJZw
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 -&gt; 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 Since Tweets Favorites Listed Following Followers Screen name Name
623
- 14,100,886 Mar 8 2008 3,913 32 185 1,871 2,767 @pengwynn Wynn Netherland
624
- 7,505,382 Jul 16 2007 2,962 727 29 88 898 @sferik Erik Michaels-Ober
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 Since Tweets Favorites Listed Following Followers Screen name Name
723
- 14,100,886 Mar 8 2008 3,913 32 185 1,871 2,767 @pengwynn Wynn Netherland
724
- 7,505,382 Jul 16 2007 2,962 727 29 88 898 @sferik Erik Michaels-Ober
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 Since Tweets Favorites Listed Following Followers Screen name Name
829
- 14,100,886 Mar 8 2008 3,913 32 185 1,871 2,767 @pengwynn Wynn Netherland
830
- 7,505,382 Jul 16 2007 2,962 727 29 88 898 @sferik Erik Michaels-Ober
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 Since Tweets Favorites Listed Following Followers Screen name Name
935
- 14,100,886 Mar 8 2008 3,913 32 185 1,871 2,767 @pengwynn Wynn Netherland
936
- 7,505,382 Jul 16 2007 2,962 727 29 88 898 @sferik Erik Michaels-Ober
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 Posted at Screen name Text
1002
- 194,548,121,416,630,272 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
- 194,547,993,607,806,976 Apr 23 2011 @TD @kelseysilver how long will you be in town?
1004
- 194,547,987,593,183,233 Apr 23 2011 @rusashka @maciej hahaha :) @gpena together we're going to cover all core 28 languages!
1005
- 194,547,824,690,597,888 Apr 23 2011 @fat @stevej @xc i'm going to picket when i get back.
1006
- 194,547,658,562,605,057 Apr 23 2011 @wil @0x9900 @paulnivin http://t.co/bwVdtAPe
1007
- 194,547,528,430,137,344 Apr 23 2011 @wangtian @tianhonghe @xiangxin72 oh, you can even order specific items?
1008
- 194,547,402,550,689,793 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
- 194,547,260,233,760,768 Apr 23 2011 @0x9900 @wil @paulnivin if you want to take you seriously don't say daemontools!
1010
- 194,547,084,349,804,544 Apr 23 2011 @kpk @shinypb @skilldrick @hoverbird invented it
1011
- 194,546,876,782,092,291 Apr 23 2011 @skilldrick @shinypb Well played :) @hoverbird
1012
- 194,546,811,480,969,217 Apr 23 2011 @sam Can someone project the date that I'll get a 27" retina display?
1013
- 194,546,738,810,458,112 Apr 23 2011 @shinypb @skilldrick @hoverbird Wow, I didn't even know they *had* TV in Britain.
1014
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
1015
- 194,546,649,203,347,456 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
- 194,546,583,608,639,488 Apr 23 2011 @sean @mep Thanks for coming by. Was great to have you.
1017
- 194,546,388,707,717,120 Apr 23 2011 @hoverbird @shinypb @trammell it's all suck a "duck blur" sometimes.
1018
- 194,546,264,212,385,793 Apr 23 2011 @kelseysilver San Francisco here I come! (@ Newark Liberty International Airport (EWR) w/ 92 others) http://t.co/eoLANJZw
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 -&gt; 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 @sferik/
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 @gruber's status: "As for the Series, I'm for the Giants\. Fuck Texas, fuck Nolan Ryan, fuck George Bush\."$/
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 Posted at Screen name Text
1189
- 194,548,121,416,630,272 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
- 194,547,993,607,806,976 Apr 23 2011 @TD @kelseysilver how long will you be in town?
1191
- 194,547,987,593,183,233 Apr 23 2011 @rusashka @maciej hahaha :) @gpena together we're going to cover all core 28 languages!
1192
- 194,547,824,690,597,888 Apr 23 2011 @fat @stevej @xc i'm going to picket when i get back.
1193
- 194,547,658,562,605,057 Apr 23 2011 @wil @0x9900 @paulnivin http://t.co/bwVdtAPe
1194
- 194,547,528,430,137,344 Apr 23 2011 @wangtian @tianhonghe @xiangxin72 oh, you can even order specific items?
1195
- 194,547,402,550,689,793 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
- 194,547,260,233,760,768 Apr 23 2011 @0x9900 @wil @paulnivin if you want to take you seriously don't say daemontools!
1197
- 194,547,084,349,804,544 Apr 23 2011 @kpk @shinypb @skilldrick @hoverbird invented it
1198
- 194,546,876,782,092,291 Apr 23 2011 @skilldrick @shinypb Well played :) @hoverbird
1199
- 194,546,811,480,969,217 Apr 23 2011 @sam Can someone project the date that I'll get a 27" retina display?
1200
- 194,546,738,810,458,112 Apr 23 2011 @shinypb @skilldrick @hoverbird Wow, I didn't even know they *had* TV in Britain.
1201
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
1202
- 194,546,649,203,347,456 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
- 194,546,583,608,639,488 Apr 23 2011 @sean @mep Thanks for coming by. Was great to have you.
1204
- 194,546,388,707,717,120 Apr 23 2011 @hoverbird @shinypb @trammell it's all suck a "duck blur" sometimes.
1205
- 194,546,264,212,385,793 Apr 23 2011 @kelseysilver San Francisco here I come! (@ Newark Liberty International Airport (EWR) w/ 92 others) http://t.co/eoLANJZw
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 -&gt; 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 Since Tweets Favorites Listed Following Followers Screen name Name
1381
- 40,514,587 May 16 2009 183 2 2 198 158 @antpires AntonioPires
1382
- 14,736,332 May 11 2008 3,850 117 99 545 802 @jtrupiano John Trupiano
1383
- 2,006,261 Mar 23 2007 4,497 9 171 967 2,028 @maccman Alex MacCaw
1384
- 14,451,152 Apr 20 2008 6,251 10 20 403 299 @mlroach Matt Laroche
1385
- 16,052,754 Aug 30 2008 24 0 1 5 42 @stuntmann82 stuntmann82
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 Posted at Screen name Text
1467
- 194,548,121,416,630,272 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.
1468
- 194,547,993,607,806,976 Apr 23 2011 @TD @kelseysilver how long will you be in town?
1469
- 194,547,987,593,183,233 Apr 23 2011 @rusashka @maciej hahaha :) @gpena together we're going to cover all core 28 languages!
1470
- 194,547,824,690,597,888 Apr 23 2011 @fat @stevej @xc i'm going to picket when i get back.
1471
- 194,547,658,562,605,057 Apr 23 2011 @wil @0x9900 @paulnivin http://t.co/bwVdtAPe
1472
- 194,547,528,430,137,344 Apr 23 2011 @wangtian @tianhonghe @xiangxin72 oh, you can even order specific items?
1473
- 194,547,402,550,689,793 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
1474
- 194,547,260,233,760,768 Apr 23 2011 @0x9900 @wil @paulnivin if you want to take you seriously don't say daemontools!
1475
- 194,547,084,349,804,544 Apr 23 2011 @kpk @shinypb @skilldrick @hoverbird invented it
1476
- 194,546,876,782,092,291 Apr 23 2011 @skilldrick @shinypb Well played :) @hoverbird
1477
- 194,546,811,480,969,217 Apr 23 2011 @sam Can someone project the date that I'll get a 27" retina display?
1478
- 194,546,738,810,458,112 Apr 23 2011 @shinypb @skilldrick @hoverbird Wow, I didn't even know they *had* TV in Britain.
1479
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
1480
- 194,546,649,203,347,456 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.
1481
- 194,546,583,608,639,488 Apr 23 2011 @sean @mep Thanks for coming by. Was great to have you.
1482
- 194,546,388,707,717,120 Apr 23 2011 @hoverbird @shinypb @trammell it's all suck a "duck blur" sometimes.
1483
- 194,546,264,212,385,793 Apr 23 2011 @kelseysilver San Francisco here I come! (@ Newark Liberty International Airport (EWR) w/ 92 others) http://t.co/eoLANJZw
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 -&gt; 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 Since Tweets Favorites Listed Following Followers Screen name Name
1705
- 14,100,886 Mar 8 2008 3,913 32 185 1,871 2,767 @pengwynn Wynn Netherland
1706
- 7,505,382 Jul 16 2007 2,962 727 29 88 898 @sferik Erik Michaels-Ober
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 7,505,382
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
@@ -33,7 +33,7 @@ describe T::Delete do
33
33
  end
34
34
  it "should have the correct output" do
35
35
  @delete.block("sferik")
36
- $stdout.string.should =~ /^@testcli unblocked @sferik\.$/
36
+ $stdout.string.should =~ /^@testcli unblocked 1 user\.$/
37
37
  end
38
38
  end
39
39
 
@@ -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 Since Tweets Favorites Listed Following Followers Screen name Name
147
- 14,100,886 Mar 8 2008 3,913 32 185 1,871 2,767 @pengwynn Wynn Netherland
148
- 7,505,382 Jul 16 2007 2,962 727 29 88 898 @sferik Erik Michaels-Ober
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 Posted at Screen name Text
270
- 194,548,121,416,630,272 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
- 194,547,993,607,806,976 Apr 23 2011 @TD @kelseysilver how long will you be in town?
272
- 194,547,987,593,183,233 Apr 23 2011 @rusashka @maciej hahaha :) @gpena together we're going to cover all core 28 languages!
273
- 194,547,824,690,597,888 Apr 23 2011 @fat @stevej @xc i'm going to picket when i get back.
274
- 194,547,658,562,605,057 Apr 23 2011 @wil @0x9900 @paulnivin http://t.co/bwVdtAPe
275
- 194,547,528,430,137,344 Apr 23 2011 @wangtian @tianhonghe @xiangxin72 oh, you can even order specific items?
276
- 194,547,402,550,689,793 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
- 194,547,260,233,760,768 Apr 23 2011 @0x9900 @wil @paulnivin if you want to take you seriously don't say daemontools!
278
- 194,547,084,349,804,544 Apr 23 2011 @kpk @shinypb @skilldrick @hoverbird invented it
279
- 194,546,876,782,092,291 Apr 23 2011 @skilldrick @shinypb Well played :) @hoverbird
280
- 194,546,811,480,969,217 Apr 23 2011 @sam Can someone project the date that I'll get a 27" retina display?
281
- 194,546,738,810,458,112 Apr 23 2011 @shinypb @skilldrick @hoverbird Wow, I didn't even know they *had* TV in Britain.
282
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
283
- 194,546,649,203,347,456 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
- 194,546,583,608,639,488 Apr 23 2011 @sean @mep Thanks for coming by. Was great to have you.
285
- 194,546,388,707,717,120 Apr 23 2011 @hoverbird @shinypb @trammell it's all suck a "duck blur" sometimes.
286
- 194,546,264,212,385,793 Apr 23 2011 @kelseysilver San Francisco here I come! (@ Newark Liberty International Airport (EWR) w/ 92 others) http://t.co/eoLANJZw
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 -&gt; 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
@@ -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 Posted at Screen name Text
63
- 194,521,262,415,032,320 Apr 23 2011 @JessRoveel Pondre lo mas importante de Hamlet en Twitter para recordarlo mejor :D
64
- 194,521,262,326,951,936 Apr 23 2011 @lauravgeest Twitter doet het al 7 uur niet meer
65
- 194,521,262,234,669,056 Apr 23 2011 @Jenny_Bearx333 I keep thinking that twitter is @instagram , and therefore double tap all the pics I like... #NotWorking
66
- 194,521,262,138,204,160 Apr 23 2011 @misspoxtonX RT @jordantaylorhi: twitter friends &gt; twats at school
67
- 194,521,262,134,001,665 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
- 194,521,262,129,811,456 Apr 23 2011 @KolonelX Ik refresh twitter op me telefoon terwijl ik tweetdeck voor me open heb staan
69
- 194,521,261,852,995,586 Apr 23 2011 @VLGPRLG5 @mikeyway and you too RT @NimcyGD: @gerardway Get your ass back to twitter, okay? :3
70
- 194,521,261,756,530,689 Apr 23 2011 @xRhiBabyx Trying to persuade the boyf to get on twitter and failing. Help? @holly_haime @Ckwarburton @samwarburton_ @chrishaime @rowloboy
71
- 194,521,261,630,697,473 Apr 23 2011 @juliotrv RT @lookinglassbr: Lançamentos outono-inverno 2012...CONFIRA em http://t.co/YAk8OXp7 http://t.co/fmmrVrbG
72
- 194,521,261,571,964,928 Apr 23 2011 @shanleyaustin27 RT @caaammmmi: @shanleyaustin27 .....and this hahahahaa http://t.co/wzCMx6ZU
73
- 194,521,261,563,580,416 Apr 23 2011 @Dame_Valuta RT @Paiser10: Great @chelseafc training at Nou Camp! #cfc http://t.co/k00TnRyR
74
- 194,521,261,488,095,232 Apr 23 2011 @miss_indyiah smh, @IndianaHustle done turned into a twitter addict..fuck goin on lol ?
75
- 194,521,261,370,650,625 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
- 194,521,261,370,642,432 Apr 23 2011 @shelbytrenchdww RT @The90sLife: Admit it, we all have a cabinet that looks like this. http://t.co/gQEkQw5G
77
- 194,521,261,307,727,872 Apr 23 2011 @kabos84 RT @JF_q8: بالله عليكم ،، مو عيب !!! .. http://t.co/e29GV7Ow
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 &gt; 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 Posted at Screen name Text
142
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
143
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
144
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
145
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
146
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
147
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
148
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
149
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
150
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
151
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
152
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
153
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
154
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
155
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
156
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
157
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
141
+ ID Posted at Screen name Text
142
+ 194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 Posted at Screen name Text
221
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
222
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
223
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
224
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
225
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
226
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
227
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
228
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
229
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
230
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
231
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
232
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
233
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
234
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
235
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
236
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
220
+ ID Posted at Screen name Text
221
+ 194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 Posted at Screen name Text
300
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
301
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
302
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
303
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
304
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
305
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
306
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
307
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
308
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
309
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
310
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
311
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
312
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
313
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
314
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
315
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
299
+ ID Posted at Screen name Text
300
+ 194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 Posted at Screen name Text
379
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
380
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
381
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
382
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
383
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
384
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
385
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
386
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
387
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
388
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
389
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
390
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
391
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
392
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
393
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
394
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
378
+ ID Posted at Screen name Text
379
+ 194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 Posted at Screen name Text
458
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
459
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
460
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
461
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
462
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
463
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
464
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
465
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
466
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
467
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
468
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
469
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
470
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
471
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
472
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
473
- 194,546,727,670,390,784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; FB from FE to daemons. Lot’s of fun. Expect improvements in the weeks to come.
457
+ ID Posted at Screen name Text
458
+ 194546727670390784 Apr 23 2011 @bartt @noahlt @gaarf Yup, now owning @twitter -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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 -&gt; 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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: t
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.3
4
+ version: 0.6.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: