t 0.0.2 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.rspec +1 -0
- data/.travis.yml +1 -1
- data/README.md +24 -14
- data/bin/t +34 -1
- data/lib/t/cli.rb +203 -121
- data/lib/t/core_ext/string.rb +7 -0
- data/lib/t/delete.rb +101 -0
- data/lib/t/set.rb +25 -17
- data/lib/t/version.rb +2 -2
- data/spec/cli_spec.rb +587 -0
- data/spec/delete_spec.rb +251 -0
- data/spec/fixtures/.trc +4 -4
- data/spec/fixtures/access_token +1 -0
- data/spec/fixtures/checkip.html +1 -0
- data/spec/fixtures/direct_message.json +1 -0
- data/spec/fixtures/direct_messages.json +1 -0
- data/spec/fixtures/favorites.json +1 -0
- data/spec/fixtures/recommendations.json +1 -0
- data/spec/fixtures/request_token +1 -0
- data/spec/fixtures/retweet.json +1 -0
- data/spec/fixtures/settings.json +1 -0
- data/spec/fixtures/sferik.json +1 -0
- data/spec/fixtures/status.json +1 -0
- data/spec/fixtures/statuses.json +1 -0
- data/spec/fixtures/xml.gp +17 -0
- data/spec/helper.rb +42 -2
- data/spec/rcfile_spec.rb +17 -16
- data/spec/set_spec.rb +125 -0
- data/t.gemspec +5 -3
- metadata +95 -36
data/spec/delete_spec.rb
ADDED
@@ -0,0 +1,251 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
describe T::Delete do
|
5
|
+
|
6
|
+
before do
|
7
|
+
@t = T::CLI.new
|
8
|
+
Timecop.freeze(Time.local(2011, 11, 24, 16, 20, 0))
|
9
|
+
@old_stderr = $stderr
|
10
|
+
$stderr = StringIO.new
|
11
|
+
@old_stdout = $stdout
|
12
|
+
$stdout = StringIO.new
|
13
|
+
end
|
14
|
+
|
15
|
+
after do
|
16
|
+
$stderr = @old_stderr
|
17
|
+
$stdout = @old_stdout
|
18
|
+
end
|
19
|
+
|
20
|
+
describe "#block" do
|
21
|
+
before do
|
22
|
+
@t.options = @t.options.merge(:profile => File.expand_path('../fixtures/.trc', __FILE__))
|
23
|
+
stub_delete("/1/blocks/destroy.json").
|
24
|
+
with(:query => {:screen_name => "sferik"}).
|
25
|
+
to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
|
26
|
+
end
|
27
|
+
it "should request the correct resource" do
|
28
|
+
@t.delete("block", "sferik")
|
29
|
+
a_delete("/1/blocks/destroy.json").
|
30
|
+
with(:query => {:screen_name => "sferik"}).
|
31
|
+
should have_been_made
|
32
|
+
end
|
33
|
+
it "should have the correct output" do
|
34
|
+
@t.delete("block", "sferik")
|
35
|
+
$stdout.string.should =~ /^@testcli unblocked @sferik$/
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
describe "#dm" do
|
40
|
+
before do
|
41
|
+
@t.options = @t.options.merge(:profile => File.expand_path('../fixtures/.trc', __FILE__))
|
42
|
+
end
|
43
|
+
context "not found" do
|
44
|
+
before do
|
45
|
+
stub_get("/1/direct_messages/sent.json").
|
46
|
+
with(:query => {:count => "1"}).
|
47
|
+
to_return(:body => "[]", :headers => {:content_type => "application/json; charset=utf-8"})
|
48
|
+
end
|
49
|
+
it "should exit" do
|
50
|
+
lambda do
|
51
|
+
@t.delete("dm")
|
52
|
+
end.should raise_error(Thor::Error, "Direct Message not found")
|
53
|
+
end
|
54
|
+
end
|
55
|
+
context "found" do
|
56
|
+
before do
|
57
|
+
stub_get("/1/direct_messages/sent.json").
|
58
|
+
with(:query => {:count => "1"}).
|
59
|
+
to_return(:body => fixture("direct_messages.json"), :headers => {:content_type => "application/json; charset=utf-8"})
|
60
|
+
stub_delete("/1/direct_messages/destroy/1773478249.json").
|
61
|
+
to_return(:body => fixture("direct_message.json"), :headers => {:content_type => "application/json; charset=utf-8"})
|
62
|
+
end
|
63
|
+
context ":force => true" do
|
64
|
+
before do
|
65
|
+
@t.options = @t.options.merge(:force => true)
|
66
|
+
end
|
67
|
+
it "should request the correct resource" do
|
68
|
+
@t.delete("dm")
|
69
|
+
a_get("/1/direct_messages/sent.json").
|
70
|
+
with(:query => {:count => "1"}).
|
71
|
+
should have_been_made
|
72
|
+
a_delete("/1/direct_messages/destroy/1773478249.json").
|
73
|
+
should have_been_made
|
74
|
+
end
|
75
|
+
it "should have the correct output" do
|
76
|
+
@t.delete("dm")
|
77
|
+
$stdout.string.chomp.should == "@sferik deleted the direct message sent to @pengwynn: Creating a fixture for the Twitter gem"
|
78
|
+
end
|
79
|
+
end
|
80
|
+
context ":force => false" do
|
81
|
+
before do
|
82
|
+
@t.options = @t.options.merge(:force => false)
|
83
|
+
end
|
84
|
+
it "should request the correct resource" do
|
85
|
+
$stdout.should_receive(:print).with("Are you sure you want to permanently delete the direct message to @hurrycane: Sounds good. Meeting Tuesday is fine.? ")
|
86
|
+
$stdin.should_receive(:gets).and_return("y")
|
87
|
+
@t.delete("dm")
|
88
|
+
a_get("/1/direct_messages/sent.json").
|
89
|
+
with(:query => {:count => "1"}).
|
90
|
+
should have_been_made
|
91
|
+
a_delete("/1/direct_messages/destroy/1773478249.json").
|
92
|
+
should have_been_made
|
93
|
+
end
|
94
|
+
it "should have the correct output" do
|
95
|
+
$stdout.should_receive(:print).with("Are you sure you want to permanently delete the direct message to @hurrycane: Sounds good. Meeting Tuesday is fine.? ")
|
96
|
+
$stdin.should_receive(:gets).and_return("y")
|
97
|
+
@t.delete("dm")
|
98
|
+
$stdout.string.chomp.should == "@sferik deleted the direct message sent to @pengwynn: Creating a fixture for the Twitter gem"
|
99
|
+
end
|
100
|
+
it "should exit" do
|
101
|
+
$stdout.should_receive(:print).with("Are you sure you want to permanently delete the direct message to @hurrycane: Sounds good. Meeting Tuesday is fine.? ")
|
102
|
+
$stdin.should_receive(:gets).and_return("n")
|
103
|
+
lambda do
|
104
|
+
@t.delete("dm")
|
105
|
+
end.should raise_error(SystemExit)
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
describe "#favorite" do
|
112
|
+
before do
|
113
|
+
@t.options = @t.options.merge(:profile => File.expand_path('../fixtures/.trc', __FILE__))
|
114
|
+
end
|
115
|
+
context "not found" do
|
116
|
+
before do
|
117
|
+
stub_get("/1/favorites.json").
|
118
|
+
with(:query => {:count => "1"}).
|
119
|
+
to_return(:body => "[]", :headers => {:content_type => "application/json; charset=utf-8"})
|
120
|
+
end
|
121
|
+
it "should exit" do
|
122
|
+
lambda do
|
123
|
+
@t.delete("favorite")
|
124
|
+
end.should raise_error(Thor::Error, "Tweet not found")
|
125
|
+
end
|
126
|
+
end
|
127
|
+
context "found" do
|
128
|
+
before do
|
129
|
+
stub_get("/1/favorites.json").
|
130
|
+
with(:query => {:count => "1"}).
|
131
|
+
to_return(:body => fixture("favorites.json"), :headers => {:content_type => "application/json; charset=utf-8"})
|
132
|
+
stub_delete("/1/favorites/destroy/28439861609.json").
|
133
|
+
to_return(:body => fixture("status.json"), :headers => {:content_type => "application/json; charset=utf-8"})
|
134
|
+
end
|
135
|
+
context ":force => true" do
|
136
|
+
before do
|
137
|
+
@t.options = @t.options.merge(:force => true)
|
138
|
+
end
|
139
|
+
it "should request the correct resource" do
|
140
|
+
@t.delete("favorite")
|
141
|
+
a_get("/1/favorites.json").
|
142
|
+
with(:query => {:count => "1"}).
|
143
|
+
should have_been_made
|
144
|
+
a_delete("/1/favorites/destroy/28439861609.json").
|
145
|
+
should have_been_made
|
146
|
+
end
|
147
|
+
it "should have the correct output" do
|
148
|
+
@t.delete("favorite")
|
149
|
+
$stdout.string.should =~ /^@testcli unfavorited @z's latest status: Spilled grilled onions on myself\. I smell delicious!$/
|
150
|
+
end
|
151
|
+
end
|
152
|
+
context ":force => false" do
|
153
|
+
before do
|
154
|
+
@t.options = @t.options.merge(:force => false)
|
155
|
+
end
|
156
|
+
it "should request the correct resource" do
|
157
|
+
$stdout.should_receive(:print).with("Are you sure you want to delete the favorite of @z: Spilled grilled onions on myself. I smell delicious!? ")
|
158
|
+
$stdin.should_receive(:gets).and_return("y")
|
159
|
+
@t.delete("favorite")
|
160
|
+
a_get("/1/favorites.json").
|
161
|
+
with(:query => {:count => "1"}).
|
162
|
+
should have_been_made
|
163
|
+
a_delete("/1/favorites/destroy/28439861609.json").
|
164
|
+
should have_been_made
|
165
|
+
end
|
166
|
+
it "should have the correct output" do
|
167
|
+
$stdout.should_receive(:print).with("Are you sure you want to delete the favorite of @z: Spilled grilled onions on myself. I smell delicious!? ")
|
168
|
+
$stdin.should_receive(:gets).and_return("y")
|
169
|
+
@t.delete("favorite")
|
170
|
+
$stdout.string.should =~ /^@testcli unfavorited @z's latest status: Spilled grilled onions on myself\. I smell delicious!$/
|
171
|
+
end
|
172
|
+
it "should exit" do
|
173
|
+
$stdout.should_receive(:print).with("Are you sure you want to delete the favorite of @z: Spilled grilled onions on myself. I smell delicious!? ")
|
174
|
+
$stdin.should_receive(:gets).and_return("n")
|
175
|
+
lambda do
|
176
|
+
@t.delete("favorite")
|
177
|
+
end.should raise_error(SystemExit)
|
178
|
+
end
|
179
|
+
end
|
180
|
+
end
|
181
|
+
end
|
182
|
+
|
183
|
+
describe "#status" do
|
184
|
+
before do
|
185
|
+
@t.options = @t.options.merge(:profile => File.expand_path('../fixtures/.trc', __FILE__))
|
186
|
+
end
|
187
|
+
context "not found" do
|
188
|
+
before do
|
189
|
+
stub_get("/1/account/verify_credentials.json").
|
190
|
+
to_return(:body => "{}", :headers => {:content_type => "application/json; charset=utf-8"})
|
191
|
+
end
|
192
|
+
it "should exit" do
|
193
|
+
lambda do
|
194
|
+
@t.delete("status")
|
195
|
+
end.should raise_error(Thor::Error, "Tweet not found")
|
196
|
+
end
|
197
|
+
end
|
198
|
+
context "found" do
|
199
|
+
before do
|
200
|
+
stub_get("/1/account/verify_credentials.json").
|
201
|
+
to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
|
202
|
+
stub_delete("/1/statuses/destroy/26755176471724032.json").
|
203
|
+
to_return(:body => fixture("status.json"), :headers => {:content_type => "application/json; charset=utf-8"})
|
204
|
+
end
|
205
|
+
context ":force => true" do
|
206
|
+
before do
|
207
|
+
@t.options = @t.options.merge(:force => true)
|
208
|
+
end
|
209
|
+
it "should request the correct resource" do
|
210
|
+
@t.delete("status")
|
211
|
+
a_get("/1/account/verify_credentials.json").
|
212
|
+
should have_been_made
|
213
|
+
a_delete("/1/statuses/destroy/26755176471724032.json").
|
214
|
+
should have_been_made
|
215
|
+
end
|
216
|
+
it "should have the correct output" do
|
217
|
+
@t.delete("status")
|
218
|
+
$stdout.string.chomp.should == "@testcli deleted the status: @noradio working on implementing #NewTwitter API methods in the twitter gem. Twurl is making it easy. Thank you!"
|
219
|
+
end
|
220
|
+
end
|
221
|
+
context ":force => false" do
|
222
|
+
before do
|
223
|
+
@t.options = @t.options.merge(:force => false)
|
224
|
+
end
|
225
|
+
it "should request the correct resource" do
|
226
|
+
$stdout.should_receive(:print).with("Are you sure you want to permanently delete the status: RT @tenderlove: [ANN] sqlite3-ruby => sqlite3? ")
|
227
|
+
$stdin.should_receive(:gets).and_return("y")
|
228
|
+
@t.delete("status")
|
229
|
+
a_get("/1/account/verify_credentials.json").
|
230
|
+
should have_been_made
|
231
|
+
a_delete("/1/statuses/destroy/26755176471724032.json").
|
232
|
+
should have_been_made
|
233
|
+
end
|
234
|
+
it "should have the correct output" do
|
235
|
+
$stdout.should_receive(:print).with("Are you sure you want to permanently delete the status: RT @tenderlove: [ANN] sqlite3-ruby => sqlite3? ")
|
236
|
+
$stdin.should_receive(:gets).and_return("y")
|
237
|
+
@t.delete("status")
|
238
|
+
$stdout.string.chomp.should == "@testcli deleted the status: @noradio working on implementing #NewTwitter API methods in the twitter gem. Twurl is making it easy. Thank you!"
|
239
|
+
end
|
240
|
+
it "should exit" do
|
241
|
+
$stdout.should_receive(:print).with("Are you sure you want to permanently delete the status: RT @tenderlove: [ANN] sqlite3-ruby => sqlite3? ")
|
242
|
+
$stdin.should_receive(:gets).and_return("n")
|
243
|
+
lambda do
|
244
|
+
@t.delete("status")
|
245
|
+
end.should raise_error(SystemExit)
|
246
|
+
end
|
247
|
+
end
|
248
|
+
end
|
249
|
+
end
|
250
|
+
|
251
|
+
end
|
data/spec/fixtures/.trc
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
---
|
2
2
|
profiles:
|
3
|
-
|
3
|
+
testcli:
|
4
4
|
abc123:
|
5
|
-
|
5
|
+
token: 428004849-cebdct6bwobn
|
6
|
+
username: testcli
|
6
7
|
consumer_key: abc123
|
7
8
|
consumer_secret: asdfasd223sd2
|
8
|
-
token: 7505382-cebdct6bwobn
|
9
9
|
secret: epzrjvxtumoc
|
10
10
|
configuration:
|
11
11
|
default_profile:
|
12
|
-
-
|
12
|
+
- testcli
|
13
13
|
- abc123
|
@@ -0,0 +1 @@
|
|
1
|
+
oauth_token=6253282-eWudHldSbIaelX7swmsiHImEL4KinwaGloHANdrY&oauth_token_secret=2EEfA6BG3ly3sR3RjE0IBSnlQu4ZrUzPiYKmrkVU&user_id=6253282&screen_name=twitterapi
|
@@ -0,0 +1 @@
|
|
1
|
+
<html><head><title>Current IP Check</title></head><body>Current IP Address: 50.131.22.169</body></html>
|
@@ -0,0 +1 @@
|
|
1
|
+
{"sender_screen_name":"sferik","recipient_screen_name":"pengwynn","recipient_id":14100886,"recipient":{"profile_background_tile":false,"profile_sidebar_fill_color":"dddddd","description":"Christian husband and father. Dev Experience @ HP Cloud Services. Co-host of the @changelogshow. Mashup of design & development.","friends_count":1877,"follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"cccccc","verified":false,"time_zone":"Central Time (US & Canada)","favourites_count":32,"url":"http:\/\/wynnnetherland.com","profile_background_color":"efefef","listed_count":184,"lang":"en","created_at":"Sat Mar 08 16:34:22 +0000 2008","location":"Dallas, TX","show_all_inline_media":false,"statuses_count":3928,"profile_use_background_image":true,"profile_text_color":"666666","protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/485575482\/komikazee_normal.png","id_str":"14100886","geo_enabled":true,"name":"Wynn Netherland","contributors_enabled":false,"following":true,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/61741268\/twitter-small.png","profile_link_color":"35abe9","screen_name":"pengwynn","id":14100886,"utc_offset":-21600,"followers_count":2767},"created_at":"Tue Oct 26 21:24:23 +0000 2010","id_str":"1825786345","sender":{"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","friends_count":88,"follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","verified":false,"time_zone":"Pacific Time (US & Canada)","favourites_count":729,"url":null,"profile_background_color":"000000","listed_count":28,"lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"statuses_count":2970,"profile_use_background_image":true,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","geo_enabled":true,"name":"Erik Michaels-Ober","contributors_enabled":false,"following":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1825786345,"text":"Creating a fixture for the Twitter gem"}
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Sun Oct 17 20:48:55 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1773478249","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1773478249,"text":"Sounds good. Meeting Tuesday is fine."},{"recipient_screen_name":"technoweenie","recipient_id":780561,"created_at":"Sat Oct 16 19:15:50 +0000 2010","sender_id":7505382,"recipient":{"description":"Relax, sweetheart. Tomorrow morning's hangover will be my own personal apocalypse.","profile_use_background_image":true,"followers_count":3945,"notifications":false,"profile_background_color":"FFFFFF","listed_count":446,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/58852\/bg-rgt.jpg","friends_count":192,"statuses_count":11437,"profile_text_color":"000000","url":"http:\/\/techno-weenie.net","show_all_inline_media":false,"profile_background_tile":false,"favourites_count":80,"contributors_enabled":false,"lang":"en","created_at":"Mon Feb 19 17:12:49 +0000 2007","profile_link_color":"0000ff","location":"sf","geo_enabled":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1002166914\/rick2_normal.jpg","profile_sidebar_fill_color":"e0ff92","name":"technow\u00fcrst","following":false,"verified":false,"time_zone":"Central Time (US & Canada)","screen_name":"technoweenie","id":780561,"id_str":"780561","follow_request_sent":false,"utc_offset":-21600,"profile_sidebar_border_color":"87bc44"},"sender":{"description":"Adventures in hunger and foolishness.","profile_use_background_image":true,"followers_count":898,"notifications":false,"profile_background_color":"000000","listed_count":28,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":88,"statuses_count":2968,"profile_text_color":"333333","url":null,"show_all_inline_media":true,"profile_background_tile":false,"favourites_count":729,"contributors_enabled":false,"lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_link_color":"0084B4","location":"San Francisco","geo_enabled":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_sidebar_fill_color":"DDEEF6","name":"Erik Michaels-Ober","following":true,"verified":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","id":7505382,"id_str":"7505382","follow_request_sent":false,"utc_offset":-28800,"profile_sidebar_border_color":"C0DEED"},"sender_screen_name":"sferik","id":1769928706,"id_str":"1769928706","text":"if you want to add me to your GroupMe group, my phone number is 415-312-2382"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Oct 14 21:43:30 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1762960771","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1762960771,"text":"That's great news! Let's plan to chat around 8 AM tomorrow Pacific time. Does that work for you? "},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Oct 01 15:07:12 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1711812216","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1711812216,"text":"I asked Yehuda about the stipend. I believe it has already been sent. Glad you're feeling better. "},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Oct 01 13:09:27 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1711417617","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1711417617,"text":"Just checking in. How's everything going?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Wed Sep 22 04:01:59 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1674941247","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1674941247,"text":"Any luck completing graphs this weekend? There have been lots of commits to RailsAdmin since summer ended but none from you. How's it going?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Sep 16 16:13:27 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1653301471","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1653301471,"text":"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?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Wed Sep 15 01:17:31 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1646568725","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1646568725,"text":"Looks good to me. I'm going to pull in the change now. My only concern is that we don't have any tests for auth."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Tue Sep 14 18:44:10 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1645324992","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1645324992,"text":"How are the graph enhancements coming?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:35:29 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638951325","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638951325,"text":"Changes pushed. You should pull and re-bundle when you have a minute."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:13:33 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638904422","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638904422,"text":"Glad to hear the new graphs are coming along. Can't wait to see them!"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:13:08 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638903478","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638903478,"text":"I figured out what was wrong with the tests: I accidentally unbundled webrat. The problem had nothing to do with rspec-rails."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:01:54 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638877375","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638877375,"text":"After the upgrade 54\/80 specs are failing. I'm working on fixing them now."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:01:18 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638875895","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638875895,"text":"a new version of rspec-rails just shipped with some nice features and fixes http:\/\/github.com\/rspec\/rspec-rails\/blob\/master\/History.md"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Sat Sep 11 17:45:46 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1632933616","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1632933616,"text":"How are the graphs coming? I'm really looking forward to seeing what you do with Rapha\u00ebl."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Sep 10 18:21:36 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1629239903","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1629239903,"text":"Awesome! Any luck duplicating the Gemfile.lock error with Ruby 1.9.2 final?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Sep 10 17:56:53 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1629166212","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1629166212,"text":"I just committed a bunch of cleanup and fixes to RailsAdmin that touched many of files. Make sure you pull to avoid conflicts."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Sep 10 02:05:16 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1626403189","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1626403189,"text":"Can you try upgrading to 1.9.2 final, re-installing Bundler 1.0.0.rc.6 (don't remove 1.0.0) and see if you can reproduce the problem?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Sep 09 18:11:48 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1624782206","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1624782206,"text":"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?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Sep 09 03:32:59 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1622306776","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1622306776,"text":"Let's try to debug that problem during our session in 1.5 hours. In the mean time, try working on the graphs or internationalization."}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"place":{"country_code":"US","place_type":"neighborhood","url":"http:\/\/api.twitter.com\/1\/geo\/id\/2b6ff8c22edd9576.json","country":"The United States of America","attributes":{},"full_name":"SoMa, San Francisco","name":"SoMa","id":"2b6ff8c22edd9576","bounding_box":{"type":"Polygon","coordinates":[[[-122.42284884,37.76893497],[-122.3964,37.76893497],[-122.3964,37.78752897],[-122.42284884,37.78752897]]]}},"retweet_count":null,"geo":{"type":"Point","coordinates":[37.78277342,-122.40647882]},"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Fri Oct 22 21:06:40 +0000 2010","in_reply_to_user_id":null,"favorited":true,"in_reply_to_user_id_str":null,"user":{"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"I'm mostly made of water. I was a Pivot. Now I'm a Square.","geo_enabled":true,"profile_sidebar_fill_color":"efefef","followers_count":1216,"notifications":false,"verified":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","follow_request_sent":false,"url":"http:\/\/zbrock.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme14\/bg.gif","lang":"en","created_at":"Tue Mar 27 04:43:51 +0000 2007","profile_background_color":"131516","location":"San Francisco, CA","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/758971993\/me_square_normal.jpg","listed_count":62,"friends_count":184,"profile_text_color":"333333","name":"Zach Brock","statuses_count":2206,"following":true,"screen_name":"z","id":2404341,"id_str":"2404341","show_all_inline_media":false,"utc_offset":-28800,"favourites_count":40,"profile_link_color":"009999"},"contributors":null,"coordinates":{"type":"Point","coordinates":[-122.40647882,37.78277342]},"in_reply_to_screen_name":null,"id":28439861609,"id_str":"28439861609","text":"Spilled grilled onions on myself. I smell delicious!"},{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"created_at":"Fri Oct 22 20:56:41 +0000 2010","in_reply_to_user_id":null,"favorited":true,"user":{"time_zone":"Eastern Time (US & Canada)","description":"Real artists ship.","verified":false,"profile_sidebar_fill_color":"dfe2df","followers_count":7659,"follow_request_sent":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"87867d","url":"http:\/\/scifihifi.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/4233628\/849777160_0677d0d6bb.jpg","listed_count":382,"lang":"en","created_at":"Wed Jul 12 23:14:49 +0000 2006","friends_count":696,"profile_background_color":"bababa","location":"NYC","statuses_count":6916,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/60308638\/buzz-talking_normal.jpg","show_all_inline_media":false,"favourites_count":3412,"profile_text_color":"000000","name":"Buzz Andersen","contributors_enabled":false,"following":true,"screen_name":"buzz","id":528,"geo_enabled":true,"utc_offset":-18000,"profile_link_color":"474747"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28439188159,"text":"My new doctor in Greenpoint asked if I drink a lot, and when I said \"Yeeeah...\" he just nodded and said \"Good, good.\" Polish doctors rule!"},{"place":null,"geo":null,"favorited":true,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"\/devices\" rel=\"nofollow\"\u003Etxt\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Oct 22 19:06:27 +0000 2010","retweeted":false,"in_reply_to_user_id":null,"user":{"show_all_inline_media":true,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/18156348\/jessica_tiled.jpg.jpeg","favourites_count":217,"description":"Engineer at Twitter. Obsessed with running. In a past life I was a member of the Rails Core team & 37signals.","contributors_enabled":false,"profile_background_color":"9AE4E8","followers_count":279792,"geo_enabled":true,"notifications":false,"profile_background_tile":true,"profile_text_color":"333333","verified":false,"url":"http:\/\/project.ioni.st","follow_request_sent":false,"profile_link_color":"0084B4","lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Apr 02 07:47:28 +0000 2007","location":"San Francisco, CA","profile_sidebar_fill_color":"DDFFCC","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/53473799\/marcel-euro-rails-conf_normal.jpg","name":"Marcel Molina","listed_count":803,"following":true,"profile_use_background_image":true,"friends_count":652,"profile_sidebar_border_color":"BDDCAD","screen_name":"noradio","id":3191321,"statuses_count":4636,"utc_offset":-28800},"coordinates":null,"id":28431820230,"truncated":false,"text":"Slowing everything down. Going on more walks. It's always now."},{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Thu Oct 21 17:36:18 +0000 2010","in_reply_to_user_id":null,"favorited":true,"in_reply_to_user_id_str":null,"user":{"time_zone":"Pacific Time (US & Canada)","favourites_count":541,"description":"Vector of enthusiasm.","geo_enabled":true,"profile_sidebar_fill_color":"a0b34a","followers_count":49860,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"a1b44f","url":"http:\/\/patrickewing.info","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/113507697\/cheerfulchirp_36_12284.jpg","lang":"en","created_at":"Sat Feb 24 18:13:15 +0000 2007","profile_background_color":"b2be63","location":"Sane Francisco","listed_count":298,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/468646545\/cropped_normal.jpg","statuses_count":3193,"profile_text_color":"29230d","name":"Patrick Ewing","show_all_inline_media":true,"following":true,"friends_count":671,"screen_name":"hoverbird","id":792690,"id_str":"792690","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"61351f"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28046477328,"id_str":"28046477328","text":"\"There's no crying in software!\" - @boblord"},{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Wed Oct 20 18:59:22 +0000 2010","in_reply_to_user_id":null,"favorited":true,"in_reply_to_user_id_str":null,"user":{"time_zone":"Pacific Time (US & Canada)","favourites_count":40,"description":"I'm mostly made of water. I was a Pivot. Now I'm a Square.","geo_enabled":true,"profile_sidebar_fill_color":"efefef","followers_count":1216,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","url":"http:\/\/zbrock.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme14\/bg.gif","lang":"en","created_at":"Tue Mar 27 04:43:51 +0000 2007","profile_background_color":"131516","location":"San Francisco, CA","listed_count":62,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/758971993\/me_square_normal.jpg","statuses_count":2208,"profile_text_color":"333333","name":"Zach Brock","show_all_inline_media":false,"following":true,"friends_count":184,"screen_name":"z","id":2404341,"id_str":"2404341","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"009999"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27956588864,"id_str":"27956588864","text":"Things I learned about VIM today: L means \"right\"."},{"place":null,"geo":null,"retweet_count":null,"favorited":true,"in_reply_to_status_id":null,"source":"web","contributors":null,"truncated":false,"created_at":"Tue Oct 19 17:15:29 +0000 2010","in_reply_to_screen_name":null,"coordinates":null,"user":{"follow_request_sent":false,"profile_text_color":"000000","description":"Founder of 37signals. Co-author of REWORK. Credo: It's simple until you make it complicated.","notifications":false,"profile_background_tile":true,"profile_link_color":"0099CC","followers_count":41922,"show_all_inline_media":false,"friends_count":81,"profile_sidebar_fill_color":"f6ffd1","url":"http://www.37signals.com","statuses_count":5240,"time_zone":"Central Time (US & Canada)","lang":"en","favourites_count":418,"created_at":"Sun Apr 13 01:31:17 +0000 2008","profile_sidebar_border_color":"fff8ad","profile_image_url":"http://a2.twimg.com/profile_images/585991126/jasonfried-avatar_normal.jpg","location":"Chicago, IL","contributors_enabled":false,"protected":false,"geo_enabled":false,"profile_use_background_image":true,"screen_name":"jasonfried","name":"Jason Fried","listed_count":4014,"following":true,"profile_background_color":"000000","id":14372143,"verified":false,"profile_background_image_url":"http://a1.twimg.com/profile_background_images/157820538/37sicon1.png","utc_offset":-21600},"retweeted":false,"in_reply_to_user_id":null,"id":27852425811,"text":"Twitter, Facebook, Youtube, etc. are modern day smoke breaks."},{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Mon Oct 18 16:11:41 +0000 2010","in_reply_to_user_id":null,"favorited":true,"in_reply_to_user_id_str":null,"user":{"time_zone":"Eastern Time (US & Canada)","favourites_count":0,"description":"","geo_enabled":false,"profile_sidebar_fill_color":"deddda","followers_count":58,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"deddda","url":"http:\/\/github.com\/laserlemon","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Thu Jun 18 17:59:32 +0000 2009","profile_background_color":"efeeeb","location":"Holland, Michigan","listed_count":4,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/269521476\/Lemon_normal.jpg","statuses_count":379,"profile_text_color":"343330","name":"Steve Richert","show_all_inline_media":true,"following":true,"friends_count":95,"screen_name":"laserlemon","id":48431692,"id_str":"48431692","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"339933"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27748704424,"id_str":"27748704424","text":"Learning HTML5 feels like learning HTML for the first time."},{"place":null,"in_reply_to_screen_name":null,"retweeted":false,"coordinates":null,"geo":null,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"favorited":true,"in_reply_to_status_id":null,"created_at":"Sun Oct 17 20:43:37 +0000 2010","in_reply_to_user_id":null,"user":{"listed_count":304,"follow_request_sent":false,"description":"GitHub, Sinatra, Rack, Rack::Cache, rdiscount, git-sh, shotgun, rack-contrib, date-performance, ...","profile_sidebar_fill_color":"ffffff","time_zone":"Pacific Time (US & Canada)","followers_count":2797,"profile_sidebar_border_color":"000000","show_all_inline_media":false,"friends_count":269,"url":"http://tomayko.com/about","statuses_count":1745,"notifications":true,"profile_use_background_image":false,"lang":"en","favourites_count":273,"created_at":"Fri Oct 05 17:11:28 +0000 2007","profile_background_color":"FFFFFF","profile_image_url":"http://a3.twimg.com/profile_images/555940239/Shades_normal.jpg","location":"San Francisco, California","contributors_enabled":false,"profile_background_image_url":"http://s.twimg.com/a/1287010001/images/themes/theme1/bg.png","protected":false,"geo_enabled":true,"profile_text_color":"000000","screen_name":"rtomayko","name":"Ryan Tomayko","following":true,"profile_background_tile":false,"id":9267332,"verified":false,"utc_offset":-28800,"profile_link_color":"0071c2"},"contributors":null,"id":27670358672,"truncated":false,"text":"Never ever say, \"this shouldn't be hard to do\" in a support request."},{"place":null,"in_reply_to_screen_name":null,"retweeted":false,"coordinates":null,"geo":null,"source":"<a href=\"http://birdhouseapp.com\" rel=\"nofollow\">Birdhouse</a>","retweet_count":null,"favorited":true,"in_reply_to_status_id":null,"created_at":"Sat Oct 16 02:18:08 +0000 2010","in_reply_to_user_id":null,"user":{"show_all_inline_media":true,"listed_count":1163,"friends_count":380,"description":"in repose","statuses_count":6283,"profile_sidebar_fill_color":"C0DFEC","time_zone":"Pacific Time (US & Canada)","favourites_count":79,"contributors_enabled":false,"profile_sidebar_border_color":"a8c7f7","geo_enabled":false,"url":"http://www.randsinrepose.com","notifications":false,"profile_use_background_image":true,"lang":"en","verified":false,"created_at":"Wed Nov 29 19:16:11 +0000 2006","profile_background_color":"022330","profile_image_url":"http://a2.twimg.com/profile_images/78687018/rands-better-05_normal.png","location":"los gatos, ca","follow_request_sent":false,"profile_background_image_url":"http://s.twimg.com/a/1287010001/images/themes/theme15/bg.png","protected":false,"profile_text_color":"333333","screen_name":"rands","name":"rands","following":true,"profile_background_tile":false,"followers_count":15353,"id":30923,"utc_offset":-28800,"profile_link_color":"0084B4"},"contributors":null,"id":27501285310,"truncated":false,"text":"I know that you trust me when you stop saying thank you."},{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sat Oct 16 00:23:26 +0000 2010","in_reply_to_user_id":null,"favorited":true,"in_reply_to_user_id_str":null,"user":{"time_zone":"Pacific Time (US & Canada)","favourites_count":228,"description":"Friends only here. Follow my public self at @joshsusser","geo_enabled":false,"profile_sidebar_fill_color":"DDFFCC","followers_count":204,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"BDDCAD","url":"http:\/\/blog.hasmanythrough.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme16\/bg.gif","lang":"en","created_at":"Wed Apr 04 22:56:41 +0000 2007","profile_background_color":"9AE4E8","location":"San Francisco, CA, USA","listed_count":34,"profile_background_tile":false,"protected":true,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/588241005\/hasmanyjaundice-tiny_normal.png","statuses_count":4486,"profile_text_color":"333333","name":"Josh Susser","show_all_inline_media":false,"following":true,"friends_count":180,"screen_name":"suss","id":3468841,"id_str":"3468841","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27492203907,"id_str":"27492203907","text":"beverage infrastructure upgrade http:\/\/yfrog.com\/5chyzycj"},{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Fri Oct 15 23:01:52 +0000 2010","in_reply_to_user_id":null,"favorited":true,"in_reply_to_user_id_str":null,"user":{"time_zone":"Pacific Time (US & Canada)","favourites_count":228,"description":"","geo_enabled":false,"profile_sidebar_fill_color":"DBDCDA","followers_count":364,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"87BC44","url":"http:\/\/floraflora.tumblr.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/2909711\/flowers.jpg","lang":"en","created_at":"Sat Aug 09 20:26:17 +0000 2008","profile_background_color":"9ae4e8","location":"San Francisco","listed_count":9,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/58028483\/Photo_1_normal.jpg","statuses_count":472,"profile_text_color":"3C3B3B","name":"ireneface","show_all_inline_media":false,"following":true,"friends_count":118,"screen_name":"ireneface","id":15792047,"id_str":"15792047","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"147844"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27486151774,"id_str":"27486151774","text":"Prediction: In 2030 our generation will be as embarrassed about our water waste today, as baby boomers are of littering in the 60's"},{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Fri Oct 15 14:11:13 +0000 2010","in_reply_to_user_id":null,"favorited":true,"in_reply_to_user_id_str":null,"user":{"time_zone":"Pacific Time (US & Canada)","favourites_count":1,"description":"curious optimist","geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","followers_count":231,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":null,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Mon Jul 21 16:30:41 +0000 2008","profile_background_color":"C0DEED","location":"","listed_count":7,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/644903329\/Gustav_KLIMT_Judith_and_Holofernes_normal.jpg","statuses_count":1421,"profile_text_color":"333333","name":"judy","show_all_inline_media":false,"following":false,"friends_count":227,"screen_name":"judyprays","id":15517107,"id_str":"15517107","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27444504849,"id_str":"27444504849","text":"i love it when typos expose better versions of words. ex: crayz gets the point across much better than crazy."},{"place":null,"coordinates":null,"retweet_count":0,"geo":null,"favorited":true,"source":"<a href=\"http://www.tweetdeck.com\" rel=\"nofollow\">TweetDeck</a>","in_reply_to_status_id":null,"created_at":"Thu Oct 14 12:27:36 +0000 2010","in_reply_to_user_id":null,"user":{"time_zone":"Amsterdam","favourites_count":12034,"description":"I got fired from my previous job, because they said my personality was weird. But that\u2019s okay, I have four more.","contributors_enabled":false,"profile_sidebar_fill_color":"52656e","geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"000000","verified":false,"url":"http://lessrelevantthannews.tumblr.com/","follow_request_sent":false,"notifications":false,"profile_background_image_url":"http://s.twimg.com/a/1287010001/images/themes/theme1/bg.png","lang":"en","created_at":"Fri Aug 27 20:43:04 +0000 2010","profile_background_color":"000000","profile_image_url":"http://a3.twimg.com/profile_images/1137463467/31582_120415217983760_100000458464963_201831_791709_n_normal.jpg","location":"Wherever life takes Visa","profile_background_tile":false,"followers_count":5389,"protected":false,"profile_text_color":"000000","screen_name":"dirtymustache","name":"C.B.M.K.","show_all_inline_media":false,"listed_count":250,"following":true,"friends_count":438,"id":183758055,"statuses_count":292,"utc_offset":3600,"profile_link_color":"79acbf"},"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"id":27335573442,"retweeted":false,"text":"When the bed is making more noise than the girl, it\u2019s probably time for a change."},{"place":null,"coordinates":null,"retweet_count":0,"geo":null,"favorited":true,"source":"web","in_reply_to_status_id":null,"created_at":"Thu Oct 14 05:04:49 +0000 2010","in_reply_to_user_id":null,"user":{"time_zone":"Mountain Time (US & Canada)","favourites_count":1573,"description":"Designed to make you feel like everything is going well. \r\nI am your Perestroika.\r\n","contributors_enabled":false,"profile_sidebar_fill_color":"ffffff","geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"ffffff","verified":false,"url":"http://kellyoxford.tumblr.com/","follow_request_sent":false,"notifications":false,"profile_background_image_url":"http://a1.twimg.com/profile_background_images/15026724/Care-O-Meter2.gif","lang":"en","created_at":"Thu Mar 05 03:24:25 +0000 2009","profile_background_color":"ececee","profile_image_url":"http://a3.twimg.com/profile_images/1104534595/kellyoxford21-300x300_normal.png","location":"","profile_background_tile":true,"followers_count":53405,"protected":false,"profile_text_color":"000000","screen_name":"kellyoxford","name":"kelly oxford","show_all_inline_media":false,"listed_count":2476,"following":true,"friends_count":260,"id":22872643,"statuses_count":1095,"utc_offset":-25200,"profile_link_color":"512f78"},"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"id":27313066151,"retweeted":false,"text":"Until Twitter, life was a regimen of unrequited afterthoughts."},{"place":null,"coordinates":null,"retweet_count":0,"geo":null,"favorited":true,"source":"<a href=\"http://blackberry.com/twitter\" rel=\"nofollow\">Twitter for BlackBerry\u00ae</a>","in_reply_to_status_id":null,"created_at":"Thu Oct 14 05:02:11 +0000 2010","in_reply_to_user_id":null,"user":{"time_zone":"Eastern Time (US & Canada)","description":"Just sitting here... Reading your tweets and silently judging you.","profile_sidebar_fill_color":"ffffff","show_all_inline_media":false,"followers_count":5185,"statuses_count":1886,"profile_use_background_image":true,"profile_sidebar_border_color":"ffffff","friends_count":482,"url":null,"contributors_enabled":false,"notifications":false,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/107689757/n.jpg","lang":"en","favourites_count":53075,"created_at":"Tue Jun 16 15:33:28 +0000 2009","profile_background_color":"1a0101","profile_image_url":"http://a2.twimg.com/profile_images/1144601566/hhhhh_normal.jpg","location":"Your mom says hi","profile_background_tile":false,"protected":false,"geo_enabled":false,"profile_text_color":"360000","screen_name":"NikiWithIssues","name":"Niki","listed_count":907,"follow_request_sent":false,"following":true,"id":47652631,"verified":false,"utc_offset":-18000,"profile_link_color":"43b000"},"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"id":27312920268,"retweeted":false,"text":"I bet my dignity and virginity are having a blast right now."},{"place":null,"coordinates":null,"retweet_count":"100+","geo":null,"favorited":true,"source":"web","in_reply_to_status_id":null,"created_at":"Thu Oct 14 04:01:48 +0000 2010","contributors":null,"in_reply_to_user_id":null,"user":{"statuses_count":2927,"description":"Breaker of Swift Mustache Hairs","profile_use_background_image":true,"favourites_count":2008,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"geo_enabled":false,"profile_background_image_url":"http://a1.twimg.com/profile_background_images/37369538/IMG_0787.JPG","profile_background_color":"C0DEED","url":null,"verified":false,"notifications":false,"profile_background_tile":false,"follow_request_sent":false,"lang":"en","created_at":"Thu Mar 12 19:09:35 +0000 2009","profile_text_color":"333333","profile_image_url":"http://a0.twimg.com/profile_images/379256380/IMG_0913_normal.JPG","location":"Los Angeles","protected":false,"profile_link_color":"0084B4","followers_count":100637,"screen_name":"thesulk","name":"Alec Sulkin","listed_count":3428,"following":true,"time_zone":"Pacific Time (US & Canada)","id":24008967,"show_all_inline_media":false,"utc_offset":-28800,"friends_count":362,"profile_sidebar_fill_color":"DDEEF6"},"truncated":false,"in_reply_to_screen_name":null,"id":27309253968,"retweeted":false,"text":"Prove that lightning isn't wizards fighting. You can't."},{"place":null,"coordinates":null,"retweet_count":0,"geo":null,"favorited":true,"source":"<a href=\"http://www.tweetdeck.com\" rel=\"nofollow\">TweetDeck</a>","in_reply_to_status_id":null,"created_at":"Thu Oct 14 03:49:20 +0000 2010","in_reply_to_user_id":null,"user":{"time_zone":"London","favourites_count":951,"description":"Male actress and comedienne.","show_all_inline_media":true,"profile_sidebar_fill_color":"bac4ca","statuses_count":8647,"profile_use_background_image":true,"profile_sidebar_border_color":"000000","contributors_enabled":false,"url":"http://www.peterserafinowicz.com/","notifications":false,"profile_background_image_url":"http://a1.twimg.com/profile_background_images/8840610/psshow.jpg","friends_count":863,"lang":"en","created_at":"Wed Jan 07 13:19:30 +0000 2009","profile_background_color":"121617","profile_image_url":"http://a0.twimg.com/profile_images/1136683148/Photo_on_2010-10-03_at_13.49__4_normal.jpg","location":"Earth's Core","geo_enabled":false,"profile_background_tile":true,"protected":false,"follow_request_sent":false,"profile_text_color":"000000","screen_name":"serafinowicz","name":"Peter Serafinowicz","listed_count":6606,"following":true,"verified":true,"id":18720595,"utc_offset":0,"profile_link_color":"c9625e","followers_count":436178},"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"id":27308384170,"retweeted":false,"text":"Lif is too short."},{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/cotweet.com\/?utm_source=sp1\" rel=\"nofollow\"\u003ECoTweet\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Thu Oct 14 03:30:03 +0000 2010","in_reply_to_user_id":null,"favorited":true,"in_reply_to_user_id_str":null,"user":{"time_zone":"Pacific Time (US & Canada)","favourites_count":233,"description":"Optimist, entrepreneur, and designer. Founded Photojojo (love of my life) & Jelly. I tweet about things that are rad!","geo_enabled":true,"profile_sidebar_fill_color":"F3FBFF","followers_count":5795,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"003599","url":"http:\/\/amitgupta.com\/","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/23548650\/3123242665_c9629e57e3_o.jpg","lang":"en","created_at":"Thu Oct 26 15:35:26 +0000 2006","profile_background_color":"9ae4e8","location":"San Francisco, CA","listed_count":560,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1112090848\/twitter-amit-by-danbusta-wild-hair_normal.png","statuses_count":4337,"profile_text_color":"000000","name":"Amit superamit Gupta","show_all_inline_media":true,"following":true,"friends_count":382,"screen_name":"superamit","id":10609,"id_str":"10609","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"0080EB"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27306957808,"id_str":"27306957808","text":"Reading someone's code is like opening up their head & rummaging through their brain. It's their thoughts laid bare. Nothing else like it."},{"place":null,"coordinates":null,"retweet_count":0,"geo":null,"favorited":true,"source":"<a href=\"http://getsocialscope.com\" rel=\"nofollow\">SocialScope</a>","in_reply_to_status_id":null,"created_at":"Thu Oct 14 02:57:44 +0000 2010","in_reply_to_user_id":null,"user":{"time_zone":"Central Time (US & Canada)","favourites_count":65183,"description":"I make the toast of a bread situation.","contributors_enabled":false,"profile_sidebar_fill_color":"e0ff92","geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"87bc44","verified":false,"url":"http://favstar.fm/users/donni/recent","follow_request_sent":false,"notifications":false,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/18626407/sanocap.JPG","lang":"en","created_at":"Wed Apr 11 19:20:18 +0000 2007","profile_background_color":"9ae4e8","profile_image_url":"http://a0.twimg.com/profile_images/840357676/cartoonifypolo_normal.jpg","location":"Chicago/North Side/Albany Park","profile_background_tile":true,"followers_count":3539,"protected":false,"profile_text_color":"000000","screen_name":"donni","name":"donni","show_all_inline_media":false,"listed_count":907,"following":true,"friends_count":604,"id":4230121,"statuses_count":3770,"utc_offset":-21600,"profile_link_color":"0000ff"},"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"id":27304453658,"retweeted":false,"text":"Prostitutes hate trick-or-treaters."},{"place":null,"coordinates":null,"retweet_count":0,"geo":null,"favorited":true,"source":"<a href=\"http://twitter.com/\" rel=\"nofollow\">Twitter for iPhone</a>","in_reply_to_status_id":null,"created_at":"Thu Oct 14 02:40:19 +0000 2010","in_reply_to_user_id":null,"user":{"geo_enabled":false,"time_zone":"Tehran","description":"President of the Islamic Republic of Iran","profile_sidebar_fill_color":"DDFFCC","verified":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"BDDCAD","url":null,"notifications":false,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/4752811/iran_flag.gif","followers_count":16741,"lang":"en","created_at":"Tue Feb 24 00:46:23 +0000 2009","profile_background_color":"9AE4E8","profile_image_url":"http://a1.twimg.com/profile_images/82018909/Mahmoud-Ahmadinejad.jpeg_normal.jpg","location":"Tehran","show_all_inline_media":false,"profile_background_tile":true,"friends_count":91,"protected":false,"statuses_count":438,"profile_text_color":"333333","screen_name":"M_Ahmadinejad","name":"Mahmoud Ahmadinejad","listed_count":667,"following":true,"favourites_count":1,"id":21713519,"contributors_enabled":false,"utc_offset":12600,"profile_link_color":"0084B4"},"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"id":27303063690,"retweeted":false,"text":"While I praise the outcome, I must raise the question of how is it that the Chilean Jew miners knew not to show for work that fateful day?"}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"user":{"time_zone":"Eastern Time (US & Canada)","protected":false,"default_profile":true,"profile_use_background_image":true,"name":"John Trupiano","contributors_enabled":false,"created_at":"Sun May 11 19:46:06 +0000 2008","profile_background_color":"C0DEED","listed_count":99,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-18000,"description":"Owner of @smartlogic. I tweet a mixed stream of incoherence and inside jokes. My tweets make me laugh; your mileage will vary.","verified":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/627637055\/thumb_gravatar_normal.jpg","id_str":"14736332","lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":117,"profile_text_color":"333333","status":{"truncated":false,"created_at":"Sat Aug 20 03:27:22 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"104756380472324096","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id":104756380472324096,"text":"Jimmy Johns: the best place to go right after getting pepper sprayed."},"friends_count":545,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/627637055\/thumb_gravatar_normal.jpg","screen_name":"jtrupiano","default_profile_image":false,"show_all_inline_media":false,"geo_enabled":false,"profile_background_tile":false,"location":"Baltimore, MD","notifications":null,"is_translator":false,"profile_link_color":"0084B4","url":"http:\/\/smartlogicsolutions.com\/john","id":14736332,"follow_request_sent":null,"statuses_count":3850,"following":null,"profile_sidebar_border_color":"C0DEED","followers_count":802},"token":"1"},{"user":{"follow_request_sent":false,"time_zone":"Pacific Time (US & Canada)","protected":false,"profile_use_background_image":true,"name":"Matt Laroche","created_at":"Sun Apr 20 12:05:38 +0000 2008","profile_background_color":"C6E2EE","show_all_inline_media":false,"contributors_enabled":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme2\/bg.gif","utc_offset":-28800,"description":"Software engineer, beer advocate, Palo Altan, husband.","listed_count":20,"verified":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1255024245\/banana_reasonably_small_normal.jpg","id_str":"14451152","lang":"en","favourites_count":10,"profile_text_color":"663B12","status":{"truncated":false,"created_at":"Sun Aug 21 20:59:41 +0000 2011","geo":{"type":"Point","coordinates":[33.8043296,-117.9226607]},"in_reply_to_user_id":20113974,"in_reply_to_status_id":105382259623854081,"favorited":false,"in_reply_to_status_id_str":"105382259623854081","coordinates":{"type":"Point","coordinates":[-117.9226607,33.8043296]},"id_str":"105383592376537088","in_reply_to_screen_name":"chasesterling","in_reply_to_user_id_str":"20113974","place":{"country_code":"US","name":"Anaheim","attributes":{},"full_name":"Anaheim, CA","place_type":"city","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-118.017597,33.788835],[-117.674604,33.788835],[-117.674604,33.881456],[-118.017597,33.881456]]]},"id":"0c2e6999105f8070","url":"http:\/\/api.twitter.com\/1\/geo\/id\/0c2e6999105f8070.json"},"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","id":105383592376537088,"text":"@chasesterling sadly in a fake vending machine at the Monsters Inc ride at Disney's California Adventure."},"statuses_count":6251,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif","profile_sidebar_fill_color":"DAECF4","screen_name":"mlroach","profile_background_tile":false,"friends_count":403,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1255024245\/banana_reasonably_small_normal.jpg","location":"Palo Alto, California","default_profile_image":false,"notifications":false,"default_profile":false,"profile_link_color":"1F98C7","url":null,"id":14451152,"is_translator":false,"following":false,"profile_sidebar_border_color":"C6E2EE","followers_count":299},"token":"21"},{"user":{"follow_request_sent":false,"statuses_count":183,"time_zone":"Greenland","protected":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/121725893\/3136259685_ed14d06774.jpg","name":"AntonioPires","created_at":"Sat May 16 18:24:33 +0000 2009","profile_background_color":"000000","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/121725893\/3136259685_ed14d06774.jpg","utc_offset":-10800,"description":"","listed_count":2,"contributors_enabled":false,"verified":false,"geo_enabled":true,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1067377349\/s_normal.jpg","id_str":"40514587","lang":"en","favourites_count":2,"profile_text_color":"828282","status":{"truncated":false,"created_at":"Mon Jun 13 16:27:31 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"80310340704931840","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"web","id":80310340704931840,"text":"Estou concorrendo a 1 ingresso do Alexandre Wollner no Rio \u2013 http:\/\/t.co\/QlJZUqF Siga @design_blog e @pensoeventos e d\u00ea RT!"},"show_all_inline_media":false,"profile_sidebar_fill_color":"1c1c1c","screen_name":"antpires","profile_background_tile":false,"location":"Rio","default_profile_image":false,"notifications":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1067377349\/s_normal.jpg","friends_count":198,"profile_link_color":"e86f6f","url":"http:\/\/antpires.carbonmade.com","id":40514587,"is_translator":false,"default_profile":false,"following":false,"profile_sidebar_border_color":"000000","followers_count":158},"token":"14"},{"user":{"time_zone":"London","protected":false,"follow_request_sent":false,"profile_use_background_image":true,"name":"Alex MacCaw","created_at":"Fri Mar 23 12:36:14 +0000 2007","profile_background_color":"9ae4e8","contributors_enabled":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":0,"description":"Ruby\/JavaScript developer, O'Reilly author and entrepreneur. ","default_profile":false,"verified":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1081483457\/Gravatar_for_info_eribium_normal.jpeg","id_str":"2006261","listed_count":171,"lang":"en","favourites_count":9,"profile_text_color":"000000","status":{"truncated":false,"created_at":"Sun Aug 21 23:54:01 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"105427467593981952","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","id":105427467593981952,"text":"Visualizing WebKit's hardware acceleration http:\/\/t.co\/nX5pvPl via @thomasfuchs"},"profile_sidebar_fill_color":"e0ff92","screen_name":"maccman","show_all_inline_media":false,"geo_enabled":true,"profile_background_tile":false,"location":"London","notifications":false,"is_translator":false,"default_profile_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_link_color":"0000ff","url":"http:\/\/alexmaccaw.co.uk","id":2006261,"statuses_count":4497,"following":false,"friends_count":967,"profile_sidebar_border_color":"87bc44","followers_count":2028,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1081483457\/Gravatar_for_info_eribium_normal.jpeg"},"token":"11"},{"user":{"follow_request_sent":false,"statuses_count":24,"time_zone":"Pacific Time (US & Canada)","protected":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","name":"stuntmann82","created_at":"Sat Aug 30 08:22:57 +0000 2008","profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-28800,"description":"","listed_count":1,"contributors_enabled":false,"verified":false,"geo_enabled":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/249396146\/images_normal.jpg","id_str":"16052754","lang":"en","favourites_count":0,"profile_text_color":"333333","status":{"truncated":false,"created_at":"Wed Nov 25 06:20:05 +0000 2009","geo":null,"in_reply_to_user_id":2889221,"in_reply_to_status_id":null,"favorited":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"6042752864","in_reply_to_screen_name":"vitaminjeff","in_reply_to_user_id_str":"2889221","place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\/\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id":6042752864,"text":"@vitaminjeff Sup bro!"},"show_all_inline_media":false,"profile_sidebar_fill_color":"DDEEF6","screen_name":"stuntmann82","profile_background_tile":false,"location":"","default_profile_image":false,"notifications":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/249396146\/images_normal.jpg","friends_count":5,"profile_link_color":"0084B4","url":null,"id":16052754,"is_translator":false,"default_profile":true,"following":false,"profile_sidebar_border_color":"C0DEED","followers_count":42},"token":"14"},{"user":{"listed_count":921,"time_zone":"Alaska","protected":false,"profile_use_background_image":false,"name":"Loren Brichter","show_all_inline_media":true,"geo_enabled":true,"created_at":"Sun Nov 04 17:48:57 +0000 2007","profile_background_color":"1A1B1F","expanded_url":null,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-32400,"description":"meat popsicle","display_url":null,"default_profile_image":false,"verified":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1054030005\/hello_normal.png","id_str":"9943672","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"lang":"en","statuses_count":1092,"favourites_count":197,"friends_count":127,"profile_text_color":"666666","status":{"truncated":false,"created_at":"Tue Aug 16 20:43:45 +0000 2011","geo":null,"in_reply_to_user_id":15048963,"in_reply_to_status_id":103567401634897920,"favorited":false,"in_reply_to_status_id_str":"103567401634897920","coordinates":null,"id_str":"103567644837429250","in_reply_to_screen_name":"jboley","in_reply_to_user_id_str":"15048963","place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id":103567644837429250,"text":"@jboley could swap out the backend, base TwUI right on top of GL, then we could go nuts."},"is_translator":false,"profile_sidebar_fill_color":"252429","screen_name":"lorenb","follow_request_sent":null,"contributors_enabled":false,"profile_background_tile":false,"location":"Philly","notifications":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","default_profile":false,"profile_link_color":"2FC2EF","url":null,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1054030005\/hello_normal.png","id":9943672,"following":null,"profile_sidebar_border_color":"181A1E","followers_count":13101},"token":"22"},{"user":{"time_zone":"Pacific Time (US & Canada)","protected":false,"profile_use_background_image":true,"name":"Craig Hockenberry","default_profile":false,"contributors_enabled":false,"created_at":"Sat Dec 02 03:11:33 +0000 2006","profile_background_color":"CD3300","listed_count":1180,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/17652\/Untitled-1.jpg","utc_offset":-28800,"description":"HAD THE IDEA FOR TWITTERRIFIC IN THE SHOWER","verified":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/838441522\/P9010020_normal.jpg","id_str":"36183","lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/17652\/Untitled-1.jpg","favourites_count":1774,"profile_text_color":"000000","status":{"truncated":false,"created_at":"Thu Aug 18 15:10:58 +0000 2011","geo":null,"in_reply_to_user_id":7440462,"in_reply_to_status_id":104193896204075010,"favorited":false,"in_reply_to_status_id_str":"104193896204075010","coordinates":null,"id_str":"104208673303310337","in_reply_to_screen_name":"drance","in_reply_to_user_id_str":"7440462","place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E","id":104208673303310337,"text":"@drance $20 x 12 > cost of an iPhone 5"},"friends_count":412,"profile_sidebar_fill_color":"DAFFBE","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/838441522\/P9010020_normal.jpg","screen_name":"chockenberry","default_profile_image":false,"show_all_inline_media":true,"geo_enabled":false,"profile_background_tile":true,"location":"Laguna Beach, CA, USA","notifications":false,"is_translator":false,"profile_link_color":"8C3500","url":"http:\/\/furbo.org","id":36183,"follow_request_sent":false,"statuses_count":17036,"following":false,"profile_sidebar_border_color":"A6CD89","followers_count":12386},"token":"24"},{"user":{"is_translator":false,"show_all_inline_media":false,"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","protected":false,"follow_request_sent":false,"profile_use_background_image":true,"name":"Mike Dalessio","contributors_enabled":false,"created_at":"Fri May 02 14:52:50 +0000 2008","profile_background_color":"C0DEED","statuses_count":658,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-18000,"description":"Rubyist, Pragmatist, Optimist, One Trick Pony. Co-author of Nokogiri. Superpowers: none (yet).\r\n","verified":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1167926691\/nokogiri-mother-1-crop_normal.png","id_str":"14626544","listed_count":28,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":255,"profile_text_color":"333333","status":{"truncated":false,"created_at":"Wed Aug 17 22:18:33 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"103953891397345280","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":9,"source":"web","retweeted_status":{"truncated":false,"created_at":"Wed Aug 17 21:44:08 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"103945228565757952","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":9,"source":"\u003Ca href=\"http:\/\/timely.is\" rel=\"nofollow\"\u003ETimely App\u003C\/a\u003E","id":103945228565757952,"text":"SSH Can Do That? Productivity Tips for Working with Remote Servers http:\/\/t.co\/F2X0gnq <- lots of good SSH tricks"},"id":103953891397345280,"text":"RT @assaf: SSH Can Do That? Productivity Tips for Working with Remote Servers http:\/\/t.co\/F2X0gnq <- lots of good SSH tricks"},"default_profile":true,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1167926691\/nokogiri-mother-1-crop_normal.png","screen_name":"flavorjones","profile_background_tile":false,"location":"NYC \/ NJ","notifications":false,"friends_count":351,"default_profile_image":false,"profile_link_color":"0084B4","url":"http:\/\/mike.daless.io\/","id":14626544,"following":false,"profile_sidebar_border_color":"C0DEED","followers_count":375},"token":"1"},{"user":{"time_zone":"Pacific Time (US & Canada)","protected":false,"show_all_inline_media":false,"contributors_enabled":false,"geo_enabled":true,"profile_use_background_image":false,"name":"GovFresh","listed_count":633,"created_at":"Sat May 02 22:19:00 +0000 2009","profile_background_color":"ffffff","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-28800,"description":"Gov 2.0, open gov news, guides, TV, tech, people. Open air government. (@lukefretwell)","statuses_count":7419,"verified":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/291447950\/icon_normal.png","id_str":"37296570","lang":"en","favourites_count":69,"friends_count":205,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/291447950\/icon_normal.png","status":{"truncated":false,"created_at":"Mon Aug 22 02:00:14 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"105459232068993024","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id":105459232068993024,"text":"RT @adrielhampton: Mention on #g2r: Kundra: Closing IT gap is key to making gov't work better for the American people http:\/\/t.co\/4vywBK0"},"default_profile_image":false,"profile_sidebar_fill_color":"ffffff","screen_name":"govfresh","profile_background_tile":false,"location":"USA","is_translator":false,"notifications":false,"default_profile":false,"follow_request_sent":false,"profile_link_color":"006699","url":"http:\/\/www.govfresh.com","id":37296570,"following":false,"profile_sidebar_border_color":"ffffff","followers_count":4770},"token":"1"},{"user":{"default_profile":false,"profile_background_color":"1A1B1F","protected":false,"show_all_inline_media":false,"contributors_enabled":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme9\/bg.gif","name":"Ola Bini","listed_count":446,"created_at":"Mon Jul 23 19:05:23 +0000 2007","id_str":"7665302","utc_offset":3600,"favourites_count":2,"profile_text_color":"666666","description":"Programming language nerd, JRuby core developer, language designer (Ioke), lisp and ruby fanatic.","statuses_count":8222,"verified":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","profile_sidebar_fill_color":"252429","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/52551367\/ONormal_normal.jpg","lang":"en","profile_background_tile":false,"friends_count":204,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/52551367\/ONormal_normal.jpg","status":{"truncated":false,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_status_id_str":null,"created_at":"Sun Aug 21 02:29:20 +0000 2011","id_str":"105104165822410752","geo":{"type":"Point","coordinates":[41.90894375,-87.67776878]},"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"in_reply_to_user_id_str":null,"coordinates":{"type":"Point","coordinates":[-87.67776878,41.90894375]},"contributors":null,"retweeted":false,"place":{"place_type":"city","country_code":"US","name":"Chicago","attributes":{},"full_name":"Chicago, IL","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-87.940101,41.644582],[-87.523661,41.644582],[-87.523661,42.023019],[-87.940101,42.023019]]]},"id":"1d9a5370a355ab0c","url":"http:\/\/api.twitter.com\/1\/geo\/id\/1d9a5370a355ab0c.json"},"retweet_count":0,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id":105104165822410752,"text":"Tonight the violet hour with lots of friends"},"default_profile_image":false,"screen_name":"olabini","profile_link_color":"2FC2EF","location":"iPhone: 40.755951,-73.968864","is_translator":false,"notifications":false,"profile_sidebar_border_color":"181A1E","follow_request_sent":false,"time_zone":"Stockholm","url":"http:\/\/olabini.com\/blog","id":7665302,"following":false,"profile_use_background_image":true,"followers_count":4905},"token":"1"},{"user":{"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_use_background_image":true,"friends_count":31485,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1408709905\/at-twitter_bigger_normal.png","name":"Spam Watch","default_profile_image":false,"created_at":"Tue Apr 29 19:55:39 +0000 2008","profile_background_color":"1A1B1F","expanded_url":null,"profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme9\/bg.gif","utc_offset":-28800,"description":"Suspect Twitter spam? Let us know (http:\/\/bit.ly\/Tweport)! Follow @spam & @safety for helpful info, and check out our favorite tips: http:\/\/bit.ly\/spamfav","display_url":null,"is_translator":false,"show_all_inline_media":false,"verified":true,"geo_enabled":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1408709905\/at-twitter_bigger_normal.png","id_str":"14589771","entities":{"user_mentions":[{"name":"Spam Watch","indices":[67,72],"id_str":"14589771","screen_name":"spam","id":14589771},{"name":"Safety","indices":[75,82],"id_str":"95731075","screen_name":"safety","id":95731075}],"urls":[{"expanded_url":null,"indices":[35,56],"url":"http:\/\/bit.ly\/Tweport"},{"expanded_url":null,"indices":[134,155],"url":"http:\/\/bit.ly\/spamfav"}],"hashtags":[]},"follow_request_sent":false,"lang":"en","favourites_count":13,"profile_text_color":"888888","status":{"truncated":false,"created_at":"Thu Aug 18 17:59:14 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"104251017306185728","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":"100+","source":"web","retweeted_status":{"truncated":false,"created_at":"Thu Aug 18 17:58:29 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"104250831292993536","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":[139769125],"retweeted":false,"retweet_count":"100+","source":"web","id":104250831292993536,"text":"Seeing Tweets that you need to sign a petition to keep Twitter free? Don't click. It's fake and will steal your password."},"id":104251017306185728,"text":"RT @safety: Seeing Tweets that you need to sign a petition to keep Twitter free? Don't click. It's fake and will steal your password."},"default_profile":false,"profile_sidebar_fill_color":"252429","screen_name":"spam","statuses_count":166,"profile_background_tile":false,"location":"Twitter HQ","contributors_enabled":true,"notifications":false,"listed_count":8679,"profile_link_color":"2FC2EF","url":"http:\/\/help.twitter.com\/entries\/64986","id":14589771,"following":false,"profile_sidebar_border_color":"181A1E","followers_count":627222},"token":"22"},{"user":{"time_zone":"Eastern Time (US & Canada)","protected":false,"profile_use_background_image":true,"name":"Ethan Marcotte","contributors_enabled":false,"created_at":"Wed Nov 15 15:59:51 +0000 2006","profile_background_color":"121212","listed_count":1460,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/224737148\/clint.jpg","utc_offset":-18000,"description":"Designer, developer. Started that whole \u201cresponsive web design\u201d thing.\r\n\r\n\u201cEight? Who taught you math?\u201d","verified":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1266637465\/sammy-boy_normal.png","id_str":"12534","default_profile":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/224737148\/clint.jpg","favourites_count":25929,"profile_text_color":"000000","status":{"truncated":false,"created_at":"Sun Aug 21 17:04:59 +0000 2011","geo":null,"in_reply_to_user_id":14318544,"in_reply_to_status_id":105321846462889984,"favorited":false,"in_reply_to_status_id_str":"105321846462889984","coordinates":null,"id_str":"105324529127137280","in_reply_to_screen_name":"blissbat","in_reply_to_user_id_str":"14318544","place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E","id":105324529127137280,"text":"@blissbat Oh my god. That is lovely. (And positively Templesmithian.)"},"friends_count":398,"profile_sidebar_fill_color":"7D7D7D","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1266637465\/sammy-boy_normal.png","screen_name":"beep","default_profile_image":false,"show_all_inline_media":true,"geo_enabled":false,"profile_background_tile":true,"location":"Cambridge, MA","notifications":false,"is_translator":false,"profile_link_color":"990000","url":"http:\/\/ethanmarcotte.com\/","id":12534,"follow_request_sent":false,"statuses_count":10490,"following":false,"profile_sidebar_border_color":"7D7D7D","followers_count":16264},"token":"22"},{"user":{"follow_request_sent":false,"time_zone":"Central Time (US & Canada)","protected":false,"profile_use_background_image":true,"name":"John Clay","created_at":"Sat Mar 14 05:19:35 +0000 2009","profile_background_color":"000000","show_all_inline_media":false,"contributors_enabled":false,"geo_enabled":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/7637392\/twitterbg1.jpg","utc_offset":-21600,"description":"1 Part Artist, 1 Part Geek, With a Splash of Pop Culture","listed_count":6,"verified":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1112575277\/41220_579052302952_57100648_33412341_4990242_n_normal.jpg","id_str":"24334548","default_profile":false,"lang":"en","favourites_count":2,"profile_text_color":"32332e","status":{"truncated":false,"created_at":"Wed Jul 27 04:23:15 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"96073136679825409","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"web","id":96073136679825409,"text":"http:\/\/t.co\/MKMlBcQ Well played @OldSpice - My vote is for #teamoldspiceguy. The writers and marketing team deserve a raise."},"statuses_count":477,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/7637392\/twitterbg1.jpg","profile_sidebar_fill_color":"8c8c88","screen_name":"Clayjm","profile_background_tile":false,"friends_count":103,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1112575277\/41220_579052302952_57100648_33412341_4990242_n_normal.jpg","location":"Missouri","default_profile_image":false,"notifications":false,"profile_link_color":"c6c09f","url":null,"id":24334548,"is_translator":false,"following":false,"profile_sidebar_border_color":"181A1E","followers_count":305},"token":"14"},{"user":{"default_profile":false,"time_zone":"Eastern Time (US & Canada)","protected":false,"profile_use_background_image":true,"name":"KaT","show_all_inline_media":false,"listed_count":1,"geo_enabled":false,"created_at":"Sat Mar 17 01:08:54 +0000 2007","profile_background_color":"1A1B1F","contributors_enabled":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme9\/bg.gif","utc_offset":-18000,"description":"","verified":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1496023849\/Clipboard01_normal.jpg","id_str":"1325781","lang":"en","statuses_count":1091,"favourites_count":0,"friends_count":71,"profile_text_color":"666666","status":{"truncated":false,"created_at":"Thu Aug 18 20:57:06 +0000 2011","geo":null,"in_reply_to_user_id":251147079,"in_reply_to_status_id":104281588854030336,"favorited":false,"in_reply_to_status_id_str":"104281588854030336","coordinates":null,"id_str":"104295781024010240","in_reply_to_screen_name":"zImperium","in_reply_to_user_id_str":"251147079","place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","id":104295781024010240,"text":"@zImperium when will this be on the market since this is a closed beta ?"},"default_profile_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","profile_sidebar_fill_color":"252429","screen_name":"katzworld","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1496023849\/Clipboard01_normal.jpg","location":"MD,USA","is_translator":false,"notifications":false,"follow_request_sent":false,"profile_link_color":"2FC2EF","url":null,"id":1325781,"following":false,"profile_sidebar_border_color":"181A1E","followers_count":269},"token":"14"},{"user":{"time_zone":"Central Time (US & Canada)","protected":true,"listed_count":2,"statuses_count":47,"profile_use_background_image":true,"name":"Angelika Biteme","contributors_enabled":false,"created_at":"Tue Jun 09 09:54:31 +0000 2009","profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-21600,"description":"Because I am addictted to Spymaster & can't go up any more levels, I started a new account. I admitted the addiction. Now I need an intervention.","verified":false,"friends_count":375,"profile_image_url":"http:\/\/a0.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","id_str":"45805107","default_profile_image":true,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"profile_text_color":"333333","default_profile":true,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","screen_name":"AngelikaSpy","is_translator":false,"show_all_inline_media":false,"profile_background_tile":false,"location":"Um, the computer desk. Duh.","follow_request_sent":false,"notifications":false,"profile_link_color":"0084B4","url":"http:\/\/angelika1972.blogspot.com\/","id":45805107,"following":false,"geo_enabled":false,"profile_sidebar_border_color":"C0DEED","followers_count":131},"token":"14"},{"user":{"time_zone":"Alaska","protected":false,"profile_use_background_image":true,"name":"LikeMinded","contributors_enabled":false,"created_at":"Fri Oct 29 23:32:48 +0000 2010","profile_background_color":"C0DEED","default_profile":false,"listed_count":26,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/168455631\/free_twitter_designer.jpg","utc_offset":-32400,"description":"An online tool for offline community action, built by Craigslist Foundation. Share or discover an idea for change today!","verified":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1159898446\/lm_twitter_normal.gif","id_str":"209802925","lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/168455631\/free_twitter_designer.jpg","favourites_count":1,"profile_text_color":"333333","status":{"truncated":false,"created_at":"Thu Aug 18 23:29:09 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"104334044203986945","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":4,"source":"\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E","retweeted_status":{"truncated":false,"created_at":"Wed Aug 17 21:19:09 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"103938943233437696","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":4,"source":"\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E","id":103938943233437696,"text":"Voting is now open for #SXSW panels! Please go vote for our panel with @Bluecadet @lkmnd on creating offline community http:\/\/ow.ly\/65TMm"},"id":104334044203986945,"text":"RT @atlasobscura: Voting is now open for #SXSW panels! Please go vote for our panel with @Bluecadet @lkmnd on creating offline community ..."},"friends_count":401,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1159898446\/lm_twitter_normal.gif","screen_name":"lkmnd","default_profile_image":false,"show_all_inline_media":false,"geo_enabled":true,"profile_background_tile":true,"location":"San Francisco, CA","notifications":false,"is_translator":false,"profile_link_color":"0084B4","url":"http:\/\/likeminded.org","id":209802925,"follow_request_sent":false,"statuses_count":128,"following":false,"profile_sidebar_border_color":"C0DEED","followers_count":332},"token":"23"},{"user":{"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","time_zone":null,"protected":false,"profile_use_background_image":true,"friends_count":133,"profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","name":"Jace","default_profile_image":true,"created_at":"Fri Jun 05 00:38:06 +0000 2009","profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"description":null,"is_translator":false,"verified":false,"profile_image_url":"http:\/\/a0.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","id_str":"44776072","follow_request_sent":false,"lang":"en","favourites_count":0,"profile_text_color":"333333","status":{"truncated":false,"created_at":"Wed Jun 17 04:22:09 +0000 2009","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"2202180865","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/playspymaster.com\" rel=\"nofollow\"\u003ESpymaster\u003C\/a\u003E","id":2202180865,"text":"I just wounded @avianto in an assassination attempt. #spymaster http:\/\/bit.ly\/playspy"},"show_all_inline_media":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","screen_name":"SecretAgent00J","profile_background_tile":false,"location":null,"contributors_enabled":false,"notifications":false,"default_profile":true,"listed_count":2,"statuses_count":44,"profile_link_color":"0084B4","url":null,"id":44776072,"following":false,"profile_sidebar_border_color":"C0DEED","followers_count":80},"token":"14"},{"user":{"time_zone":"Central Time (US & Canada)","protected":false,"is_translator":false,"default_profile":true,"profile_use_background_image":true,"name":"Justa Spy","follow_request_sent":false,"statuses_count":34,"created_at":"Mon Jun 08 14:37:58 +0000 2009","profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-21600,"description":"My alter-ego... Find the real me: @goneflyin","verified":false,"profile_image_url":"http:\/\/a3.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","id_str":"45577830","contributors_enabled":false,"lang":"en","favourites_count":0,"profile_text_color":"333333","status":{"truncated":false,"created_at":"Wed Jul 20 01:04:26 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"93486387462021121","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/shadowcities.com\/\" rel=\"nofollow\"\u003EShadow Cities\u003C\/a\u003E","id":93486387462021121,"text":"Join Me (AufFlaighin) in the Battle for Shadow Cities! http:\/\/bit.ly\/mVYnxv"},"listed_count":3,"profile_sidebar_fill_color":"DDEEF6","screen_name":"gonespyin","profile_background_tile":false,"location":"","notifications":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":626,"profile_link_color":"0084B4","url":null,"profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","id":45577830,"default_profile_image":true,"show_all_inline_media":false,"following":false,"geo_enabled":false,"profile_sidebar_border_color":"C0DEED","followers_count":364},"token":"14"},{"user":{"time_zone":"Eastern Time (US & Canada)","protected":false,"profile_use_background_image":true,"name":"Darth Vader","contributors_enabled":false,"created_at":"Tue Jan 09 15:42:04 +0000 2007","profile_background_color":"4B4B4B","listed_count":12900,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/30752\/vader.gif","utc_offset":-18000,"description":"Evil Orphan Annie\u2122","verified":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/425092539\/vader_normal_normal.png","id_str":"618593","lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/30752\/vader.gif","favourites_count":252,"profile_text_color":"8a8a8a","status":{"truncated":false,"created_at":"Thu Aug 18 14:02:38 +0000 2011","geo":null,"in_reply_to_user_id":641333,"in_reply_to_status_id":104190049779851264,"favorited":false,"in_reply_to_status_id_str":"104190049779851264","coordinates":null,"id_str":"104191476291997696","in_reply_to_screen_name":"davidcaolo","in_reply_to_user_id_str":"641333","place":null,"contributors":null,"retweeted":false,"retweet_count":1,"source":"\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E","id":104191476291997696,"text":"@davidcaolo If this is a consular ship, where is the ambassador?!"},"friends_count":6699,"profile_sidebar_fill_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/425092539\/vader_normal_normal.png","screen_name":"darthvader","default_profile_image":false,"default_profile":false,"show_all_inline_media":false,"geo_enabled":false,"profile_background_tile":true,"location":"Empire, CO","notifications":false,"is_translator":false,"profile_link_color":"AA1212","url":null,"id":618593,"follow_request_sent":false,"statuses_count":1454,"following":false,"profile_sidebar_border_color":"AA1212","followers_count":350892},"token":"22"},{"user":{"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/53292788\/twitter_bg2.png","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_use_background_image":true,"friends_count":254,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1497179992\/skitched-20110815-135946_normal.jpg","name":"Cliff Moon","default_profile_image":false,"created_at":"Mon Mar 24 01:05:35 +0000 2008","profile_background_color":"707070","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/53292788\/twitter_bg2.png","utc_offset":-28800,"description":"Not a real person.","is_translator":false,"show_all_inline_media":false,"verified":false,"geo_enabled":true,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1497179992\/skitched-20110815-135946_normal.jpg","id_str":"14204623","follow_request_sent":null,"lang":"en","favourites_count":320,"profile_text_color":"666666","status":{"truncated":false,"created_at":"Mon Aug 22 01:30:47 +0000 2011","geo":null,"in_reply_to_user_id":15387262,"in_reply_to_status_id":105451772604198912,"favorited":false,"in_reply_to_status_id_str":"105451772604198912","coordinates":null,"id_str":"105451820574457856","in_reply_to_screen_name":"ohlol","in_reply_to_user_id_str":"15387262","place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id":105451820574457856,"text":"@ohlol what is it?"},"profile_sidebar_fill_color":"000000","screen_name":"moonpolysoft","default_profile":false,"statuses_count":14100,"profile_background_tile":true,"location":"8========D~~~","contributors_enabled":false,"notifications":null,"listed_count":90,"profile_link_color":"66d6ff","url":"http:\/\/github.com\/cliffmoon","id":14204623,"following":null,"profile_sidebar_border_color":"bddcad","followers_count":1193},"token":"1"}]
|
@@ -0,0 +1 @@
|
|
1
|
+
oauth_token=Z6eEdO8MOmk394WozF5oKyuAv855l4Mlqo7hhlSLik&oauth_token_secret=Kd75W4OQfb2oJTV0vzGzeXftVAwgMnEK9MumzYcM&oauth_callback_confirmed=true
|
@@ -0,0 +1 @@
|
|
1
|
+
{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","profile_sidebar_fill_color":"dddddd","followers_count":91398,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","listed_count":5095,"profile_background_tile":false,"friends_count":452,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","statuses_count":10488,"profile_text_color":"000000","name":"John Gruber","show_all_inline_media":false,"following":true,"favourites_count":8601,"screen_name":"gruber","id":33423,"id_str":"33423","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"new_id":608250155669389312,"new_id_str":"608250155669389312","source":"\u003Ca href=\"http:\/\/apps.facebook.com\/the-run-around\/\" rel=\"nofollow\"\u003EThe Run Around\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Mon Oct 25 07:39:11 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","description":"Adventures in hunger and foolishness.","profile_sidebar_fill_color":"DDEEF6","followers_count":898,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":null,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","listed_count":28,"profile_background_tile":false,"friends_count":88,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","statuses_count":2968,"profile_text_color":"333333","name":"Erik Michaels-Ober","show_all_inline_media":true,"following":false,"favourites_count":727,"screen_name":"sferik","id":7505382,"id_str":"7505382","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28669546014,"id_str":"28669546014","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"language":"en","discoverable_by_email":true,"trend_location":[{"url":"http:\/\/where.yahooapis.com\/v1\/place\/23424803","parentid":1,"name":"Ireland","countryCode":"IE","placeType":{"name":"Country","code":12},"woeid":23424803,"country":"Ireland"}],"sleep_time":{"enabled":false,"start_time":0,"end_time":0},"geo_enabled":true,"time_zone":{"name":"Eastern Time (US & Canada)","utc_offset":-18000,"tzinfo_name":"America\/New_York"},"always_use_https":true}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"show_all_inline_media":true,"lang":"en","geo_enabled":true,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","created_at":"Mon Jul 16 12:59:01 +0000 2007","description":"A mind forever voyaging through strange seas of thought, alone.","screen_name":"sferik","url":"https:\/\/github.com\/sferik","status":{"retweeted_status":{"coordinates":null,"retweeted":false,"retweet_count":8,"created_at":"Sun Jan 16 20:57:21 +0000 2011","in_reply_to_user_id":null,"place":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"id_str":"26744838716133376","geo":null,"contributors":null,"in_reply_to_screen_name":null,"id":26744838716133376,"in_reply_to_user_id_str":null,"text":"[ANN] sqlite3-ruby => sqlite3"},"coordinates":null,"retweeted":false,"retweet_count":8,"created_at":"Sun Jan 16 21:38:25 +0000 2011","in_reply_to_user_id":null,"place":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"id_str":"26755176471724032","geo":null,"contributors":null,"in_reply_to_screen_name":null,"id":26755176471724032,"in_reply_to_user_id_str":null,"text":"RT @tenderlove: [ANN] sqlite3-ruby => sqlite3"},"profile_text_color":"333333","followers_count":1048,"listed_count":41,"following":false,"favourites_count":1040,"profile_sidebar_fill_color":"DDEEF6","location":"San Francisco","profile_background_tile":false,"time_zone":"Pacific Time (US & Canada)","contributors_enabled":false,"statuses_count":3479,"profile_link_color":"0084B4","is_translator":false,"profile_sidebar_border_color":"C0DEED","protected":false,"id_str":"7505382","name":"Erik Michaels-Ober","verified":false,"notifications":false,"profile_use_background_image":true,"friends_count":197,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1186912733\/Github_Square_normal.jpg","id":7505382,"follow_request_sent":false,"utc_offset":-28800,"profile_background_color":"000000"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"place":{"country_code":"US","place_type":"neighborhood","url":"http:\/\/api.twitter.com\/1\/geo\/id\/41bcb736f84a799e.json","country":"The United States of America","attributes":{},"full_name":"Mission Bay, San Francisco","name":"Mission Bay","id":"41bcb736f84a799e","bounding_box":{"type":"Polygon","coordinates":[[[-122.40618084,37.76405301],[-122.38151184,37.76405301],[-122.38151184,37.78199199],[-122.40618084,37.78199199]]]}},"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Thu Sep 30 01:43:44 +0000 2010","in_reply_to_user_id":3191321,"favorited":false,"in_reply_to_user_id_str":"3191321","user":{"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"Adventures in hunger and foolishness.","geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","followers_count":898,"notifications":false,"verified":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","follow_request_sent":false,"url":null,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","listed_count":28,"friends_count":88,"profile_text_color":"333333","name":"Erik Michaels-Ober","statuses_count":2968,"following":false,"screen_name":"sferik","id":7505382,"id_str":"7505382","show_all_inline_media":true,"utc_offset":-28800,"favourites_count":727,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":"noradio","id":25938088801,"id_str":"25938088801","text":"@noradio working on implementing #NewTwitter API methods in the twitter gem. Twurl is making it easy. Thank you!"}
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"created_at":"Sat Oct 16 17:07:46 +0000 2010","retweeted":false,"id_str":"27558893223","user":{"follow_request_sent":false,"profile_background_color":"000000","description":"Adventures in hunger and foolishness.","verified":false,"favourites_count":729,"notifications":false,"profile_use_background_image":true,"profile_text_color":"333333","listed_count":28,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","url":null,"statuses_count":2968,"show_all_inline_media":true,"lang":"en","profile_background_tile":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_sidebar_fill_color":"DDEEF6","location":"San Francisco","contributors_enabled":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","friends_count":88,"profile_sidebar_border_color":"C0DEED","name":"Erik Michaels-Ober","following":false,"screen_name":"sferik","id":7505382,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","utc_offset":-28800,"followers_count":898},"coordinates":null,"id":27558893223,"truncated":false,"text":"Ruby is the best programming language for hiding the ugly bits."},{"place":null,"coordinates":null,"retweet_count":null,"geo":null,"favorited":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","in_reply_to_status_id":null,"created_at":"Fri Oct 15 18:26:47 +0000 2010","contributors":null,"in_reply_to_user_id":null,"user":{"friends_count":112,"description":"degradable","follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","verified":false,"profile_background_image_url":"http://a1.twimg.com/profile_background_images/133569392/nature02922-f1.2.jpg","profile_background_color":"C0DEED","url":null,"show_all_inline_media":true,"notifications":false,"profile_background_tile":true,"lang":"en","statuses_count":2915,"geo_enabled":true,"favourites_count":707,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","location":"San Francisco","protected":false,"contributors_enabled":false,"profile_link_color":"0084B4","screen_name":"sferik","name":"Erik Michaels-Ober","listed_count":28,"following":true,"time_zone":"Pacific Time (US & Canada)","followers_count":894,"id":7505382,"utc_offset":-28800,"profile_sidebar_fill_color":"DDEEF6"},"truncated":false,"in_reply_to_screen_name":null,"id":27467028175,"retweeted":false,"text":"There are 1.3 billion people in China; when people say there are 1 billion they are rounding off the entire population of the United States."},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","retweet_count":null,"created_at":"Mon Oct 11 20:57:56 +0000 2010","id_str":"27068258331","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":27068258331,"truncated":false,"text":"The new Windows Phone campaign is the best advertising from Microsoft since \"Start Me Up\" (1995). Great work by CP+B. http:\/\/t.co\/tIzxopI"},{"in_reply_to_status_id_str":null,"place":{"country_code":"US","place_type":"city","url":"http:\/\/api.twitter.com\/1\/geo\/id\/4552eed9a8b61ff9.json","country":"The United States of America","bounding_box":{"type":"Polygon","coordinates":[[[-123.632497,38.29571],[-122.833844,38.29571],[-122.833844,38.808369],[-123.632497,38.808369]]]},"attributes":{},"full_name":"Russian River-Coastal, CA","name":"Russian River-Coastal","id":"4552eed9a8b61ff9"},"geo":{"type":"Point","coordinates":[38.524535,-123.088368]},"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Sun Oct 10 18:26:22 +0000 2010","id_str":"26959930192","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":{"type":"Point","coordinates":[-123.088368,38.524535]},"id":26959930192,"truncated":false,"text":"Fear not to sow seeds because of the birds. http:\/\/twitpic.com\/2wg621"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Oct 06 00:03:47 +0000 2010","id_str":"26503221778","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":26503221778,"truncated":false,"text":"Speaking of things that are maddening: the interview with the Wall Street guys on the most recent This American Life http:\/\/bit.ly\/af9pSD"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"created_at":"Wed Sep 29 00:49:44 +0000 2010","retweeted":false,"id_str":"25836892941","user":{"follow_request_sent":false,"profile_background_color":"000000","description":"Adventures in hunger and foolishness.","verified":false,"favourites_count":729,"notifications":false,"profile_use_background_image":true,"profile_text_color":"333333","listed_count":28,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","url":null,"statuses_count":2968,"show_all_inline_media":true,"lang":"en","profile_background_tile":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_sidebar_fill_color":"DDEEF6","location":"San Francisco","contributors_enabled":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","friends_count":88,"profile_sidebar_border_color":"C0DEED","name":"Erik Michaels-Ober","following":false,"screen_name":"sferik","id":7505382,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","utc_offset":-28800,"followers_count":898},"coordinates":null,"id":25836892941,"truncated":false,"text":"Holy cow! RailsAdmin is up to 200 watchers (from 100 yesterday). http:\/\/github.com\/sferik\/rails_admin"},{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Mon Sep 27 23:35:56 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"time_zone":"Pacific Time (US & Canada)","description":"Adventures in hunger and foolishness.","profile_sidebar_fill_color":"DDEEF6","followers_count":898,"listed_count":29,"notifications":false,"friends_count":88,"statuses_count":2962,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","show_all_inline_media":true,"favourites_count":727,"url":null,"contributors_enabled":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","geo_enabled":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","verified":false,"profile_text_color":"333333","name":"Erik Michaels-Ober","follow_request_sent":false,"following":false,"screen_name":"sferik","id":7505382,"id_str":"7505382","utc_offset":-28800,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":25732982065,"id_str":"25732982065","text":"Kind of cool that Facebook acts as a mirror for open-source projects that they use or like http:\/\/mirror.facebook.net\/"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Mon Sep 27 14:55:28 +0000 2010","id_str":"25693598875","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":25693598875,"truncated":false,"text":"RailsAdmin already has 100 watchers, 12 forks, and 6 contributors in less than 2 months. Let's keep the momentum going! http:\/\/bit.ly\/cCMMqD"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"created_at":"Tue Sep 14 03:25:46 +0000 2010","retweeted":false,"id_str":"24443017910","user":{"profile_background_color":"000000","description":"Adventures in hunger and foolishness.","verified":false,"follow_request_sent":false,"notifications":false,"profile_use_background_image":true,"profile_text_color":"333333","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","url":null,"listed_count":28,"lang":"en","profile_background_tile":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":88,"profile_sidebar_fill_color":"DDEEF6","location":"San Francisco","statuses_count":2968,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","name":"Erik Michaels-Ober","contributors_enabled":false,"following":false,"screen_name":"sferik","id":7505382,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","utc_offset":-28800,"followers_count":898},"coordinates":null,"id":24443017910,"truncated":false,"text":"This week's This American Life is amazing. @JoeLipari is an American hero. http:\/\/bit.ly\/d9RbnB"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"created_at":"Sat Sep 11 02:17:29 +0000 2010","retweeted":false,"id_str":"24158227743","user":{"profile_background_color":"000000","description":"Adventures in hunger and foolishness.","verified":false,"follow_request_sent":false,"notifications":false,"profile_use_background_image":true,"profile_text_color":"333333","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","url":null,"listed_count":28,"lang":"en","profile_background_tile":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":88,"profile_sidebar_fill_color":"DDEEF6","location":"San Francisco","statuses_count":2968,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","name":"Erik Michaels-Ober","contributors_enabled":false,"following":false,"screen_name":"sferik","id":7505382,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","utc_offset":-28800,"followers_count":898},"coordinates":null,"id":24158227743,"truncated":false,"text":"RT @polyseme: OH: shofars should be called jewvuzelas."},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Sep 10 18:07:47 +0000 2010","id_str":"24126395365","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":24126395365,"truncated":false,"text":"Spent this morning fixing broken windows in RailsAdmin http:\/\/github.com\/sferik\/rails_admin\/compare\/ab6c598...0e3770f"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Sep 10 18:02:34 +0000 2010","id_str":"24126047148","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":24126047148,"truncated":false,"text":"I'm a big believer that the broken windows theory applies to software development http:\/\/en.wikipedia.org\/wiki\/Broken_windows_theory"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Thu Sep 09 17:12:21 +0000 2010","id_str":"24028079777","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":24028079777,"truncated":false,"text":"I hope you idiots are happy with your piece of shit Android phones. http:\/\/www.apple.com\/pr\/library\/2010\/09\/09statement.html"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Sep 01 17:55:15 +0000 2010","id_str":"22728299854","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":22728299854,"truncated":false,"text":"Ping: kills MySpace dead."},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Sep 01 17:43:30 +0000 2010","id_str":"22727444431","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":22727444431,"truncated":false,"text":"Crazy that iTunes Ping didn't leak a drop."},{"in_reply_to_status_id_str":null,"place":{"country_code":"US","place_type":"neighborhood","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5c92ab5379de3839.json","country":"The United States of America","bounding_box":{"type":"Polygon","coordinates":[[[-122.40348192,37.77752898],[-122.387436,37.77752898],[-122.387436,37.79448597],[-122.40348192,37.79448597]]]},"attributes":{},"full_name":"South Beach, San Francisco","name":"South Beach","id":"5c92ab5379de3839"},"geo":{"type":"Point","coordinates":[37.782365,-122.392431]},"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Sep 01 05:53:01 +0000 2010","id_str":"22683247815","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":{"type":"Point","coordinates":[-122.392431,37.782365]},"id":22683247815,"truncated":false,"text":"The plot thickens http:\/\/twitpic.com\/2k5lt2"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Aug 27 23:01:19 +0000 2010","id_str":"22305399947","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":22305399947,"truncated":false,"text":"140 Proof Provides A Piece Of The Twitter Advertising\u00a0Puzzle http:\/\/t.co\/R2cUSDe via @techcrunch"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Aug 27 22:33:42 +0000 2010","id_str":"22303907694","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":22303907694,"truncated":false,"text":"Try as you may http:\/\/www.thedoghousediaries.com\/?p=1940"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Thu Aug 19 01:38:01 +0000 2010","id_str":"21538122473","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":21538122473,"truncated":false,"text":"I know @SarahPalinUSA has a right to use Twitter, but should she?"}]
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<geoPlugin>
|
3
|
+
<geoplugin_city>San Francisco</geoplugin_city>
|
4
|
+
<geoplugin_region>CA</geoplugin_region>
|
5
|
+
<geoplugin_areaCode>415</geoplugin_areaCode>
|
6
|
+
<geoplugin_dmaCode>807</geoplugin_dmaCode>
|
7
|
+
<geoplugin_countryCode>US</geoplugin_countryCode>
|
8
|
+
<geoplugin_countryName>United States</geoplugin_countryName>
|
9
|
+
<geoplugin_continentCode>NA</geoplugin_continentCode>
|
10
|
+
<geoplugin_latitude>37.76969909668</geoplugin_latitude>
|
11
|
+
<geoplugin_longitude>-122.39330291748</geoplugin_longitude>
|
12
|
+
<geoplugin_regionCode>CA</geoplugin_regionCode>
|
13
|
+
<geoplugin_regionName>California</geoplugin_regionName>
|
14
|
+
<geoplugin_currencyCode>USD</geoplugin_currencyCode>
|
15
|
+
<geoplugin_currencySymbol>&#36;</geoplugin_currencySymbol>
|
16
|
+
<geoplugin_currencyConverter>1</geoplugin_currencyConverter>
|
17
|
+
</geoPlugin>
|
data/spec/helper.rb
CHANGED
@@ -1,7 +1,47 @@
|
|
1
|
-
|
2
|
-
$KCODE = 'u' if major.to_i == 1 && minor.to_i < 9
|
1
|
+
ENV["T_ENV"] = "test"
|
3
2
|
require 'simplecov'
|
4
3
|
SimpleCov.start
|
5
4
|
require 't'
|
6
5
|
require 'rspec'
|
6
|
+
require 'timecop'
|
7
7
|
require 'webmock/rspec'
|
8
|
+
|
9
|
+
def a_delete(path, endpoint=Twitter.endpoint)
|
10
|
+
a_request(:delete, endpoint + path)
|
11
|
+
end
|
12
|
+
|
13
|
+
def a_get(path, endpoint=Twitter.endpoint)
|
14
|
+
a_request(:get, endpoint + path)
|
15
|
+
end
|
16
|
+
|
17
|
+
def a_post(path, endpoint=Twitter.endpoint)
|
18
|
+
a_request(:post, endpoint + path)
|
19
|
+
end
|
20
|
+
|
21
|
+
def a_put(path, endpoint=Twitter.endpoint)
|
22
|
+
a_request(:put, endpoint + path)
|
23
|
+
end
|
24
|
+
|
25
|
+
def stub_delete(path, endpoint=Twitter.endpoint)
|
26
|
+
stub_request(:delete, endpoint + path)
|
27
|
+
end
|
28
|
+
|
29
|
+
def stub_get(path, endpoint=Twitter.endpoint)
|
30
|
+
stub_request(:get, endpoint + path)
|
31
|
+
end
|
32
|
+
|
33
|
+
def stub_post(path, endpoint=Twitter.endpoint)
|
34
|
+
stub_request(:post, endpoint + path)
|
35
|
+
end
|
36
|
+
|
37
|
+
def stub_put(path, endpoint=Twitter.endpoint)
|
38
|
+
stub_request(:put, endpoint + path)
|
39
|
+
end
|
40
|
+
|
41
|
+
def fixture_path
|
42
|
+
File.expand_path("../fixtures", __FILE__)
|
43
|
+
end
|
44
|
+
|
45
|
+
def fixture(file)
|
46
|
+
File.new(fixture_path + '/' + file)
|
47
|
+
end
|
data/spec/rcfile_spec.rb
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
# encoding: utf-8
|
1
2
|
require 'helper'
|
2
3
|
|
3
4
|
describe RCFile do
|
@@ -17,7 +18,7 @@ describe RCFile do
|
|
17
18
|
it 'should return the profiles for a user' do
|
18
19
|
rcfile = RCFile.instance
|
19
20
|
rcfile.path = File.expand_path('../fixtures/.trc', __FILE__)
|
20
|
-
rcfile['
|
21
|
+
rcfile['testcli'].keys.should == ['abc123']
|
21
22
|
end
|
22
23
|
end
|
23
24
|
|
@@ -25,23 +26,23 @@ describe RCFile do
|
|
25
26
|
it 'should add a profile for a user' do
|
26
27
|
rcfile = RCFile.instance
|
27
28
|
rcfile.path = '/tmp/trc'
|
28
|
-
rcfile['
|
29
|
+
rcfile['testcli'] = {
|
29
30
|
'abc123' => {
|
30
|
-
:username => '
|
31
|
+
:username => 'testcli',
|
31
32
|
:consumer_key => 'abc123',
|
32
33
|
:consumer_secret => 'def456',
|
33
34
|
:token => 'ghi789',
|
34
35
|
:secret => 'jkl012',
|
35
36
|
}
|
36
37
|
}
|
37
|
-
rcfile['
|
38
|
+
rcfile['testcli'].keys.should == ['abc123']
|
38
39
|
end
|
39
40
|
it 'should write the data to disk' do
|
40
41
|
rcfile = RCFile.instance
|
41
42
|
rcfile.path = '/tmp/trc'
|
42
|
-
rcfile['
|
43
|
+
rcfile['testcli'] = {
|
43
44
|
'abc123' => {
|
44
|
-
:username => '
|
45
|
+
:username => 'testcli',
|
45
46
|
:consumer_key => 'abc123',
|
46
47
|
:consumer_secret => 'def456',
|
47
48
|
:token => 'ghi789',
|
@@ -49,7 +50,7 @@ describe RCFile do
|
|
49
50
|
}
|
50
51
|
}
|
51
52
|
rcfile.load
|
52
|
-
rcfile['
|
53
|
+
rcfile['testcli'].keys.should == ['abc123']
|
53
54
|
rcfile.delete
|
54
55
|
end
|
55
56
|
end
|
@@ -82,7 +83,7 @@ describe RCFile do
|
|
82
83
|
it 'should return default profile' do
|
83
84
|
rcfile = RCFile.instance
|
84
85
|
rcfile.path = File.expand_path('../fixtures/.trc', __FILE__)
|
85
|
-
rcfile.default_profile.should == ['
|
86
|
+
rcfile.default_profile.should == ['testcli', 'abc123']
|
86
87
|
end
|
87
88
|
end
|
88
89
|
|
@@ -92,15 +93,15 @@ describe RCFile do
|
|
92
93
|
rcfile.path = File.expand_path('/tmp/trc', __FILE__)
|
93
94
|
rcfile.load
|
94
95
|
rcfile.delete
|
95
|
-
rcfile.default_profile = {'username' => '
|
96
|
-
rcfile.default_profile.should == ['
|
96
|
+
rcfile.default_profile = {'username' => 'testcli', 'consumer_key' => 'abc123'}
|
97
|
+
rcfile.default_profile.should == ['testcli', 'abc123']
|
97
98
|
end
|
98
99
|
it 'should write the data to disk' do
|
99
100
|
rcfile = RCFile.instance
|
100
101
|
rcfile.path = '/tmp/trc'
|
101
|
-
rcfile.default_profile = {'username' => '
|
102
|
+
rcfile.default_profile = {'username' => 'testcli', 'consumer_key' => 'abc123'}
|
102
103
|
rcfile.load
|
103
|
-
rcfile.default_profile.should == ['
|
104
|
+
rcfile.default_profile.should == ['testcli', 'abc123']
|
104
105
|
rcfile.delete
|
105
106
|
end
|
106
107
|
end
|
@@ -109,7 +110,7 @@ describe RCFile do
|
|
109
110
|
it 'should return default token' do
|
110
111
|
rcfile = RCFile.instance
|
111
112
|
rcfile.path = File.expand_path('../fixtures/.trc', __FILE__)
|
112
|
-
rcfile.default_token.should == '
|
113
|
+
rcfile.default_token.should == '428004849-cebdct6bwobn'
|
113
114
|
end
|
114
115
|
end
|
115
116
|
|
@@ -155,7 +156,7 @@ describe RCFile do
|
|
155
156
|
it 'should load data from file' do
|
156
157
|
rcfile = RCFile.instance
|
157
158
|
rcfile.path = File.expand_path('../fixtures/.trc', __FILE__)
|
158
|
-
rcfile.load['profiles']['
|
159
|
+
rcfile.load['profiles']['testcli']['abc123']['username'].should == 'testcli'
|
159
160
|
end
|
160
161
|
end
|
161
162
|
context 'when file does not exist at path' do
|
@@ -182,7 +183,7 @@ describe RCFile do
|
|
182
183
|
it 'should reload data' do
|
183
184
|
rcfile = RCFile.instance
|
184
185
|
rcfile.path = File.expand_path('../fixtures/.trc', __FILE__)
|
185
|
-
rcfile['
|
186
|
+
rcfile['testcli']['abc123']['username'].should == 'testcli'
|
186
187
|
end
|
187
188
|
end
|
188
189
|
|
@@ -190,7 +191,7 @@ describe RCFile do
|
|
190
191
|
it 'should return profiles' do
|
191
192
|
rcfile = RCFile.instance
|
192
193
|
rcfile.path = File.expand_path('../fixtures/.trc', __FILE__)
|
193
|
-
rcfile.profiles.keys.should == ['
|
194
|
+
rcfile.profiles.keys.should == ['testcli']
|
194
195
|
end
|
195
196
|
end
|
196
197
|
|