thimbl 0.1.1 → 0.1.2
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/Manifest +2 -0
- data/Rakefile +1 -1
- data/lib/thimbl/base.rb +1 -1
- data/lib/thimbl/finger.rb +1 -1
- data/test/fixtures/cache_error_nil.json +487 -0
- data/thimbl.gemspec +2 -2
- metadata +5 -4
data/Manifest
CHANGED
@@ -10,8 +10,10 @@ lib/thimbl/command.rb
|
|
10
10
|
lib/thimbl/finger.rb
|
11
11
|
lib/thimbl/utils.rb
|
12
12
|
test/fixtures/cache.json
|
13
|
+
test/fixtures/cache_error_nil.json
|
13
14
|
test/fixtures/finger_dk_telekommunisten_org.txt
|
14
15
|
test/fixtures/finger_dk_telekommunisten_org_two_break_lines.txt
|
15
16
|
test/test_helper.rb
|
16
17
|
test/thimbl_base_test.rb
|
17
18
|
test/thimbl_command_test.rb
|
19
|
+
test/thimbl_utils_test.rb
|
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
Echoe.new('thimbl', '0.1.
|
5
|
+
Echoe.new('thimbl', '0.1.2') do |p|
|
6
6
|
p.description = "Small client for the distributed microbloging protocol: [thimbl](http://www.thimbl.net/)"
|
7
7
|
p.url = "http://github.com/fguillen/ThimblClient"
|
8
8
|
p.author = "Fernando Guillen"
|
data/lib/thimbl/base.rb
CHANGED
@@ -130,7 +130,7 @@ module Thimbl
|
|
130
130
|
def print
|
131
131
|
result = ""
|
132
132
|
messages.each do |message|
|
133
|
-
result +=
|
133
|
+
result += message['time'].strftime( '%Y-%m-%d %H:%M:%S' )
|
134
134
|
result += " #{message['address']}"
|
135
135
|
result += " > #{message['text']}"
|
136
136
|
result += "\n"
|
data/lib/thimbl/finger.rb
CHANGED
@@ -0,0 +1,487 @@
|
|
1
|
+
{ "me" : "dk@telekommunisten.org",
|
2
|
+
"plans" : { "aharon@telekommunisten.org" : { "address" : "me@example.com",
|
3
|
+
"following" : [ ],
|
4
|
+
"messages" : [ { "address" : "me@example.com",
|
5
|
+
"text" : "my post to print",
|
6
|
+
"time" : "20110127162707"
|
7
|
+
},
|
8
|
+
{ "address" : "me@example.com",
|
9
|
+
"text" : "my post",
|
10
|
+
"time" : "20110127162708"
|
11
|
+
},
|
12
|
+
{ "address" : "me@example.com",
|
13
|
+
"text" : "lap cat",
|
14
|
+
"time" : "20110128083338"
|
15
|
+
}
|
16
|
+
],
|
17
|
+
"name" : "6",
|
18
|
+
"properties" : { "email" : "me@example.com",
|
19
|
+
"mobile" : "TBD",
|
20
|
+
"website" : "www.example.com"
|
21
|
+
},
|
22
|
+
"replies" : { }
|
23
|
+
},
|
24
|
+
"dk@telekommunisten.org" : { "address" : "dk@telekommunisten.org",
|
25
|
+
"following" : [ { "address" : "as@telekommunisten.org",
|
26
|
+
"nick" : "anthony"
|
27
|
+
},
|
28
|
+
{ "address" : "ed@ping01.stura.uni-weimar.de",
|
29
|
+
"nick" : "bernd"
|
30
|
+
},
|
31
|
+
{ "address" : "meschugge@ping01.stura.uni-weimar.de",
|
32
|
+
"nick" : "meschugge"
|
33
|
+
},
|
34
|
+
{ "address" : "mike@mikepearce.net",
|
35
|
+
"nick" : "mike"
|
36
|
+
},
|
37
|
+
{ "address" : "ww@river.styx.org",
|
38
|
+
"nick" : "ww"
|
39
|
+
},
|
40
|
+
{ "address" : "spaetz@spaetz.dyndns.org",
|
41
|
+
"nick" : "spaetz"
|
42
|
+
},
|
43
|
+
{ "address" : "marcell@telekommunisten.org",
|
44
|
+
"nick" : "marcell"
|
45
|
+
},
|
46
|
+
{ "address" : "rw@telekommunisten.org",
|
47
|
+
"nick" : "dk"
|
48
|
+
},
|
49
|
+
{ "address" : "naikodemus@telekommunisten.org",
|
50
|
+
"nick" : "n"
|
51
|
+
},
|
52
|
+
{ "address" : "aharon@telekommunisten.org",
|
53
|
+
"nick" : "aharon"
|
54
|
+
},
|
55
|
+
{ "address" : "ashull@telekommunisten.org",
|
56
|
+
"nick" : "ashull"
|
57
|
+
},
|
58
|
+
{ "address" : "fguillen@telekommunisten.org",
|
59
|
+
"nick" : "fguillen"
|
60
|
+
},
|
61
|
+
{ "address" : "rw@telekommunisten.org",
|
62
|
+
"nick" : "rw"
|
63
|
+
},
|
64
|
+
{ "address" : "hatfinch@telekommunisten.org",
|
65
|
+
"nick" : "rw"
|
66
|
+
},
|
67
|
+
{ "address" : "mikepearce@telekommunisten.org",
|
68
|
+
"nick" : "mike"
|
69
|
+
},
|
70
|
+
{ "address" : "t@telekommunisten.org",
|
71
|
+
"nick" : "t"
|
72
|
+
}
|
73
|
+
],
|
74
|
+
"messages" : [ { "address" : "dk@telekommunisten.org",
|
75
|
+
"text" : "@bernd, would be cool to inegrate thimbl in http://bau-ha.us\\!",
|
76
|
+
"time" : "20101129060335"
|
77
|
+
},
|
78
|
+
{ "address" : "dk@telekommunisten.org",
|
79
|
+
"text" : "back in berlin, call +31108208622 to here the noise created in Rotterdam",
|
80
|
+
"time" : "20101206065528"
|
81
|
+
},
|
82
|
+
{ "address" : "dk@telekommunisten.org",
|
83
|
+
"text" : "What is thimbl's equivilent of #FF? In any case, follow the earliest Thimbl users: ossa@nummo.strangled.net and ed@ping01.stura.uni-weimar.de",
|
84
|
+
"time" : "20101206070601"
|
85
|
+
},
|
86
|
+
{ "address" : "dk@telekommunisten.org",
|
87
|
+
"text" : "@mark, would it be better if the posts where sorted by data, and not user?",
|
88
|
+
"time" : "20101207034655"
|
89
|
+
},
|
90
|
+
{ "address" : "dk@telekommunisten.org",
|
91
|
+
"text" : "@mark, not using the version I am, seems to sort by user then date, instead of just date, I tried to pull in the latest from your repo, but then the thimbl executable vanished.",
|
92
|
+
"time" : "20101207080308"
|
93
|
+
},
|
94
|
+
{ "address" : "dk@telekommunisten.org",
|
95
|
+
"text" : "@mark, ok, using climbl now, posts are sorted in order. great. can't we keep the command as 'thimbl' though? it's nicer and more obvious (principal of least surprise)",
|
96
|
+
"time" : "20101207083809"
|
97
|
+
},
|
98
|
+
{ "address" : "dk@telekommunisten.org",
|
99
|
+
"text" : "@mark, also a feature request, can we have a 'read' command that combines fetch+print? and unfollow would be nice (like when you make a typo in an address)",
|
100
|
+
"time" : "20101207084025"
|
101
|
+
},
|
102
|
+
{ "address" : "dk@telekommunisten.org",
|
103
|
+
"text" : "@mark, or perhaps follow would first try to finger the account before adding it, to verify it's a real thimbl account?",
|
104
|
+
"time" : "20101207084116"
|
105
|
+
},
|
106
|
+
{ "address" : "dk@telekommunisten.org",
|
107
|
+
"text" : "@mark, just one more thing! perhaps convert dates to GMT? Otherwise sorting is affected by timezones",
|
108
|
+
"time" : "20101207084249"
|
109
|
+
},
|
110
|
+
{ "address" : "dk@telekommunisten.org",
|
111
|
+
"text" : "@mark, never mind about unfollow, I just read your blog ;)",
|
112
|
+
"time" : "20101207091343"
|
113
|
+
},
|
114
|
+
{ "address" : "dk@telekommunisten.org",
|
115
|
+
"text" : "@mark, if we store the dats in GMT/UTC in the .plan, then timezones are no longer an issue",
|
116
|
+
"time" : "20101207130325"
|
117
|
+
},
|
118
|
+
{ "address" : "dk@telekommunisten.org",
|
119
|
+
"text" : "@mark, great updates, your lates has been merged into the Telekommunisten repos",
|
120
|
+
"time" : "20101208104508"
|
121
|
+
},
|
122
|
+
{ "address" : "dk@telekommunisten.org",
|
123
|
+
"text" : "I'm working on a new option parser for node called Operetta, will release soon",
|
124
|
+
"time" : "20101214165553"
|
125
|
+
},
|
126
|
+
{ "address" : "dk@telekommunisten.org",
|
127
|
+
"text" : "just launched the new thimbl website. http://www.thimbl.net",
|
128
|
+
"time" : "20110125065111"
|
129
|
+
},
|
130
|
+
{ "address" : "dk@telekommunisten.org",
|
131
|
+
"text" : "@spaetz: first response ;)",
|
132
|
+
"time" : "20110201143140"
|
133
|
+
},
|
134
|
+
{ "address" : "dk@telekommunisten.org",
|
135
|
+
"text" : "@ed: have you tried frozen soup?",
|
136
|
+
"time" : "20110201143220"
|
137
|
+
},
|
138
|
+
{ "address" : "dk@telekommunisten.org",
|
139
|
+
"text" : "Hello from the thimbl workshop",
|
140
|
+
"time" : "20110202152339"
|
141
|
+
},
|
142
|
+
{ "address" : "dk@telekommunisten.org",
|
143
|
+
"text" : "Tonight @cbase: monochrom & Telekommunisten run DISMALWARE an antivirus toolkit for your liberal Western brain http://bit.ly/dismalware",
|
144
|
+
"time" : "20110203121940"
|
145
|
+
},
|
146
|
+
{ "address" : "dk@telekommunisten.org",
|
147
|
+
"text" : "If rocker hair and skinny jeans could make comebacks, why not Finger? http://ping.fm/3C95t",
|
148
|
+
"time" : "20110203162208"
|
149
|
+
},
|
150
|
+
{ "address" : "dk@telekommunisten.org",
|
151
|
+
"text" : "http://kleiner.posterous.com/last-to-chance-to-vote-for-thimbl-we-need-you",
|
152
|
+
"time" : "20110204145719"
|
153
|
+
},
|
154
|
+
{ "address" : "dk@telekommunisten.org",
|
155
|
+
"text" : "transmediale was fun, Thimbl got a distinction and moves onwards...",
|
156
|
+
"time" : "20110206192607"
|
157
|
+
},
|
158
|
+
{ "address" : "dk@telekommunisten.org",
|
159
|
+
"text" : "@naikomdemus, it works. Welcome.",
|
160
|
+
"time" : "20110207113246"
|
161
|
+
}
|
162
|
+
],
|
163
|
+
"name" : "Dmytri Kleiner",
|
164
|
+
"properties" : { "email" : "dk@telekommunisten.net",
|
165
|
+
"mobile" : "",
|
166
|
+
"website" : "http://dmytri.info"
|
167
|
+
},
|
168
|
+
"replies" : { }
|
169
|
+
},
|
170
|
+
"ed@ping01.stura.uni-weimar.de" : { "address" : "ed@ping01.stura.uni-weimar.de",
|
171
|
+
"following" : [ { "address" : "dk@telekommunisten.org",
|
172
|
+
"nick" : "dk"
|
173
|
+
},
|
174
|
+
{ "address" : "meschugge@mediathek",
|
175
|
+
"nick" : "meschugge"
|
176
|
+
}
|
177
|
+
],
|
178
|
+
"messages" : [ { "text" : "es lebe die maschine der teleanarchistischen revolution\\!",
|
179
|
+
"time" : "20101119121004"
|
180
|
+
},
|
181
|
+
{ "text" : "welcome @meschugge",
|
182
|
+
"time" : "20101119125823"
|
183
|
+
},
|
184
|
+
{ "text" : "@dk@telekommunisten.org",
|
185
|
+
"time" : "20101121233510"
|
186
|
+
},
|
187
|
+
{ "text" : "maybe we can integrate thimbl in http://bau-ha.us/ .. would be nice",
|
188
|
+
"time" : "20101123141444"
|
189
|
+
},
|
190
|
+
{ "text" : "is",
|
191
|
+
"time" : "20101125163219"
|
192
|
+
},
|
193
|
+
{ "text" : "http://blog.maschinenraum.tk/2010/11/26/irgendwas-bei-350-zeilen-interface-fuer-einen-one-liner/",
|
194
|
+
"time" : "20101126061454"
|
195
|
+
},
|
196
|
+
{ "text" : "'AM NULLPUNKT - positionen der russ. avantgarde' haelt sich aber schon wie so ne hotelzimmer-bibel in der hand... nur eben anders :D",
|
197
|
+
"time" : "20101130021551"
|
198
|
+
},
|
199
|
+
{ "text" : "genau wie es JETZT ist, ist es schoen, so wie es ist",
|
200
|
+
"time" : "20101130031208"
|
201
|
+
},
|
202
|
+
{ "text" : "i need a soup which is rly SFU (safe for university) ^^",
|
203
|
+
"time" : "20110119092806"
|
204
|
+
}
|
205
|
+
],
|
206
|
+
"name" : "bernd naumann",
|
207
|
+
"properties" : { "email" : "bernd-naumann@uni-weimar.de",
|
208
|
+
"mobile" : "",
|
209
|
+
"website" : "http://bernd.naumann.blog.bau-ha.us/"
|
210
|
+
},
|
211
|
+
"replies" : { }
|
212
|
+
},
|
213
|
+
"fguillen@telekommunisten.org" : { "bio" : "bio",
|
214
|
+
"following" : [ { "address" : "dk@telekommunisten.org",
|
215
|
+
"nick" : "dk"
|
216
|
+
},
|
217
|
+
{ "address" : "mike@telekommunisten.org",
|
218
|
+
"nick" : "mike"
|
219
|
+
},
|
220
|
+
{ "address" : "naikodemus@telekommunisten.org",
|
221
|
+
"nick" : "naikodemus"
|
222
|
+
}
|
223
|
+
],
|
224
|
+
"messages" : [ { "address" : "fguillen@telekommunisten.org,",
|
225
|
+
"text" : "ouch!",
|
226
|
+
"time" : "20110208001027"
|
227
|
+
},
|
228
|
+
{ "address" : "fguillen@telekommunisten.org,",
|
229
|
+
"text" : "this is the thimbl console working :)",
|
230
|
+
"time" : "20110208002932"
|
231
|
+
},
|
232
|
+
{ "address" : "fguillen@telekommunisten.org,",
|
233
|
+
"text" : "hi nikodemus :)..",
|
234
|
+
"time" : "20110208115032"
|
235
|
+
},
|
236
|
+
{ "address" : "fguillen@telekommunisten.org,",
|
237
|
+
"text" : "I have to fix something in the ruby thimbl command because I only see the names of dk and mine :/",
|
238
|
+
"time" : "20110208115056"
|
239
|
+
},
|
240
|
+
{ "address" : "fguillen@telekommunisten.org",
|
241
|
+
"text" : "I was passing through",
|
242
|
+
"time" : "20110212214047"
|
243
|
+
},
|
244
|
+
{ "address" : "fguillen@telekommunisten.org",
|
245
|
+
"text" : "I was passing through",
|
246
|
+
"time" : "20110212214107"
|
247
|
+
}
|
248
|
+
],
|
249
|
+
"name" : "name",
|
250
|
+
"properties" : { "email" : "email",
|
251
|
+
"mobile" : "mobile",
|
252
|
+
"website" : "website"
|
253
|
+
},
|
254
|
+
"replies" : { }
|
255
|
+
},
|
256
|
+
"hatfinch@telekommunisten.org" : { "address" : "me@example.com",
|
257
|
+
"following" : [ { "address" : "dk@telekommunisten.org",
|
258
|
+
"nick" : "dk"
|
259
|
+
},
|
260
|
+
{ "address" : "dk@telekommunisten.org",
|
261
|
+
"nick" : "dk"
|
262
|
+
},
|
263
|
+
{ "address" : "dk@telekommunisten.org",
|
264
|
+
"nick" : "dk"
|
265
|
+
}
|
266
|
+
],
|
267
|
+
"messages" : [ ],
|
268
|
+
"name" : "6",
|
269
|
+
"properties" : { "email" : "me@example.com",
|
270
|
+
"mobile" : "TBD",
|
271
|
+
"website" : "www.example.com"
|
272
|
+
},
|
273
|
+
"replies" : { }
|
274
|
+
},
|
275
|
+
"meschugge@ping01.stura.uni-weimar.de" : { "address" : "meschugge@ping01.stura.uni-weimar.de",
|
276
|
+
"following" : [ { "address" : "ed@mediathek",
|
277
|
+
"nick" : "ed"
|
278
|
+
},
|
279
|
+
{ "address" : "dk@telekommunisten.net",
|
280
|
+
"nick" : "dk"
|
281
|
+
}
|
282
|
+
],
|
283
|
+
"messages" : [ { "text" : "Viva la Machine",
|
284
|
+
"time" : "20101119125644"
|
285
|
+
} ],
|
286
|
+
"name" : "Linus Krempel",
|
287
|
+
"properties" : { "email" : "mischa.linus.krempel@uni-weimar.de",
|
288
|
+
"mobile" : "",
|
289
|
+
"website" : "mitshoko.blog.bau-ha.us"
|
290
|
+
},
|
291
|
+
"replies" : { }
|
292
|
+
},
|
293
|
+
"mikepearce@telekommunisten.org" : { "address" : "mike@mikepearce.net",
|
294
|
+
"following" : [ { "address" : "dk@telekommunisten.org",
|
295
|
+
"nick" : "dk"
|
296
|
+
} ],
|
297
|
+
"messages" : [ { "text" : "Mike finally get thimbl CLI working.",
|
298
|
+
"time" : "20110204155134"
|
299
|
+
} ],
|
300
|
+
"name" : "Mike Pearce",
|
301
|
+
"properties" : { "email" : "mike@mikepearce.net",
|
302
|
+
"mobile" : "N/A",
|
303
|
+
"website" : "http://blog.mikepearce.net"
|
304
|
+
},
|
305
|
+
"replies" : { }
|
306
|
+
},
|
307
|
+
"naikodemus@telekommunisten.org" : { "address" : "naikodemus@telekommunisten.org",
|
308
|
+
"following" : [ { "address" : "dk@telekommunisten.org",
|
309
|
+
"nick" : "dk"
|
310
|
+
},
|
311
|
+
{ "address" : "mcarter@markcarter.me.uk",
|
312
|
+
"nick" : "Mark Carter"
|
313
|
+
},
|
314
|
+
{ "address" : "ossa@nummo.strangled.net",
|
315
|
+
"nick" : "ossa"
|
316
|
+
},
|
317
|
+
{ "address" : "ed@ping01.stura.uni-weimar.de",
|
318
|
+
"nick" : "ed"
|
319
|
+
},
|
320
|
+
{ "address" : "mike@mikepearce.net",
|
321
|
+
"nick" : "Mike Pearce"
|
322
|
+
},
|
323
|
+
{ "address" : "mike@telekommunisten.org",
|
324
|
+
"nick" : "Mike Pearce"
|
325
|
+
},
|
326
|
+
{ "address" : "fguillen@telekommunisten.org",
|
327
|
+
"nick" : "FGuillen"
|
328
|
+
}
|
329
|
+
],
|
330
|
+
"messages" : [ { "address" : "naikodemus@telekommunisten.org",
|
331
|
+
"text" : "Hello thimbluniverse",
|
332
|
+
"time" : "20110202001600"
|
333
|
+
},
|
334
|
+
{ "address" : "naikodemus@telekommunisten.org",
|
335
|
+
"text" : "Searching for users in the thimbluniverse",
|
336
|
+
"time" : "20110205122114"
|
337
|
+
},
|
338
|
+
{ "address" : "naikodemus@telekommunisten.org",
|
339
|
+
"text" : "test update. 20110207. see if it works.",
|
340
|
+
"time" : "20110207002053"
|
341
|
+
},
|
342
|
+
{ "address" : "naikodemus@telekommunisten.org",
|
343
|
+
"text" : "fguillen added to my timeline. It eems to work",
|
344
|
+
"time" : "20110208104116"
|
345
|
+
},
|
346
|
+
{ "text" : "thx, @dk. Already read you. Hi fguillen.",
|
347
|
+
"time" : "20110208104222"
|
348
|
+
}
|
349
|
+
],
|
350
|
+
"name" : " Naikodemus",
|
351
|
+
"properties" : { "email" : "naikodemus@albanocruz.com",
|
352
|
+
"mobile" : "N/A",
|
353
|
+
"website" : "naikodemus.wordpress.com"
|
354
|
+
},
|
355
|
+
"replies" : { }
|
356
|
+
},
|
357
|
+
"rw@telekommunisten.org" : { "address" : "rw@trick.ca",
|
358
|
+
"following" : [ { "address" : "dk@telekommunisten.net",
|
359
|
+
"nick" : "dk"
|
360
|
+
} ],
|
361
|
+
"messages" : [ { "address" : "rw@trick.ca",
|
362
|
+
"text" : "go",
|
363
|
+
"time" : "20110127213558"
|
364
|
+
},
|
365
|
+
{ "address" : "rw@trick.ca",
|
366
|
+
"text" : "go",
|
367
|
+
"time" : "20110127213615"
|
368
|
+
},
|
369
|
+
{ "address" : "rw@trick.ca",
|
370
|
+
"text" : "go thimbl gothimbl print",
|
371
|
+
"time" : "20110127213704"
|
372
|
+
},
|
373
|
+
{ "address" : "rw@trick.ca",
|
374
|
+
"text" : "go thimbl go",
|
375
|
+
"time" : "20110127213716"
|
376
|
+
}
|
377
|
+
],
|
378
|
+
"name" : " rico weise",
|
379
|
+
"properties" : { "email" : "rw@telekommunisten.net",
|
380
|
+
"mobile" : "0308687035760",
|
381
|
+
"website" : "www.humanite.tk"
|
382
|
+
},
|
383
|
+
"replies" : { }
|
384
|
+
},
|
385
|
+
"spaetz@spaetz.dyndns.org" : { "address" : "spaetz@spaetz.dyndns.org",
|
386
|
+
"following" : [ ],
|
387
|
+
"messages" : [ { "address" : "spaetz@dyndns.org",
|
388
|
+
"text" : "First post",
|
389
|
+
"time" : "20110201101110"
|
390
|
+
} ],
|
391
|
+
"name" : " Sebastian Spaeth",
|
392
|
+
"properties" : { "email" : "Sebastian@SSpaeth.de",
|
393
|
+
"mobile" : "N/A",
|
394
|
+
"website" : " sspaeth.de"
|
395
|
+
},
|
396
|
+
"replies" : { }
|
397
|
+
},
|
398
|
+
"t@telekommunisten.org" : { "address" : "t@telekommunisten.org",
|
399
|
+
"following" : [ { "address" : "dk@telekommunisten.net",
|
400
|
+
"nick" : "dk"
|
401
|
+
},
|
402
|
+
{ "address" : "dk@telekommunisten.org",
|
403
|
+
"nick" : "dk"
|
404
|
+
},
|
405
|
+
{ "address" : "dk@thimbl.net",
|
406
|
+
"nick" : "dk2"
|
407
|
+
},
|
408
|
+
{ "address" : "mcarter@markcarter.me.uk",
|
409
|
+
"nick" : "mcarter"
|
410
|
+
},
|
411
|
+
{ "address" : "mike@mikepearce.net",
|
412
|
+
"nick" : "mike"
|
413
|
+
}
|
414
|
+
],
|
415
|
+
"messages" : [ { "address" : "t@telekommunisten.org",
|
416
|
+
"text" : "@dk",
|
417
|
+
"time" : "20101125204158"
|
418
|
+
},
|
419
|
+
{ "address" : "t@telekommunisten.org",
|
420
|
+
"text" : "@dk and who is @meschugge?",
|
421
|
+
"time" : "20101125204337"
|
422
|
+
},
|
423
|
+
{ "address" : "t@telekommunisten.org",
|
424
|
+
"text" : "and thimbl.net net is still down for me.",
|
425
|
+
"time" : "20101126075805"
|
426
|
+
},
|
427
|
+
{ "address" : "t@telekommunisten.org",
|
428
|
+
"text" : "@dk in the docs of thimbl-cli you propagate dk@telekommunisten.net which is not working",
|
429
|
+
"time" : "20101126080019"
|
430
|
+
},
|
431
|
+
{ "address" : "t@telekommunisten.org",
|
432
|
+
"text" : "currently i am at mobile monday summit in berlin.",
|
433
|
+
"time" : "20101129063517"
|
434
|
+
},
|
435
|
+
{ "address" : "t@telekommunisten.org",
|
436
|
+
"text" : "@dk is giving a talk today at c-base. i hope he will mention #thimbl there.",
|
437
|
+
"time" : "20101228183233"
|
438
|
+
},
|
439
|
+
{ "address" : "t@telekommunisten.org",
|
440
|
+
"text" : "i wish all my followers and the rest of the world a happy new year",
|
441
|
+
"time" : "20110102183015"
|
442
|
+
},
|
443
|
+
{ "address" : "t@telekommunisten.org",
|
444
|
+
"text" : "talking currently with wulff about schnickschnack",
|
445
|
+
"time" : "20110106001648"
|
446
|
+
},
|
447
|
+
{ "address" : "t@telekommunisten.org",
|
448
|
+
"text" : "@dk damn i missed the thimbl workshop",
|
449
|
+
"time" : "20110203163721"
|
450
|
+
},
|
451
|
+
{ "address" : "t@telekommunisten.org",
|
452
|
+
"text" : "rt @dk@telekommunisten.org: Tonight @cbase: monochrom & Telekommunisten run DISMALWARE an antivirus toolkit for your liberal Western brain http://bit.ly/dismalware",
|
453
|
+
"time" : "20110203163808"
|
454
|
+
},
|
455
|
+
{ "text" : "transmediale is over for me now. mobile freidae at c-base was nice. iEnsemble Berlin really rox. heading over to austria tomorrow",
|
456
|
+
"time" : "20110204233818"
|
457
|
+
}
|
458
|
+
],
|
459
|
+
"name" : "Yan Minagawa",
|
460
|
+
"properties" : { "email" : "t@telekommunisten.org",
|
461
|
+
"mobile" : "N/A",
|
462
|
+
"website" : "t.crew.c-base.org"
|
463
|
+
},
|
464
|
+
"replies" : { }
|
465
|
+
},
|
466
|
+
"ww@river.styx.org" : { "bio" : "Provenance, government linked data, social networks... etc. etc.",
|
467
|
+
"following" : [ { "address" : "mailto:dk@telekommunisten.net",
|
468
|
+
"name" : "Dmytri Kleiner",
|
469
|
+
"nick" : "tricknik",
|
470
|
+
"seeAlso" : [ "finger://thimbl.net/dk" ]
|
471
|
+
},
|
472
|
+
{ "name" : "Michael Hausenblas",
|
473
|
+
"seeAlso" : [ "http://sw-app.org/mic.xhtml#i" ]
|
474
|
+
},
|
475
|
+
{ "seeAlso" : [ "http://danbri.org/foaf.rdf#danbri" ] },
|
476
|
+
{ "address" : "mailto:gjh@bel-epa.com",
|
477
|
+
"name" : "Graham Higgins"
|
478
|
+
}
|
479
|
+
],
|
480
|
+
"name" : "William Waites",
|
481
|
+
"properties" : { "email_sha1sum" : "665f9e22fc640f5fcdfa6ee32e85e2fe3e3fb417",
|
482
|
+
"mobile" : "+493057705773",
|
483
|
+
"website" : "http://river.styx.org/ww/"
|
484
|
+
}
|
485
|
+
}
|
486
|
+
}
|
487
|
+
}
|
data/thimbl.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{thimbl}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.2"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Fernando Guillen"]
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
|
12
12
|
s.email = %q{fguillen.mail@gmail.com}
|
13
13
|
s.executables = ["thimblr"]
|
14
14
|
s.extra_rdoc_files = ["README.md", "bin/thimblr", "lib/thimbl.rb", "lib/thimbl/base.rb", "lib/thimbl/command.rb", "lib/thimbl/finger.rb", "lib/thimbl/utils.rb"]
|
15
|
-
s.files = ["Gemfile", "Gemfile.lock", "Manifest", "README.md", "Rakefile", "bin/thimblr", "lib/thimbl.rb", "lib/thimbl/base.rb", "lib/thimbl/command.rb", "lib/thimbl/finger.rb", "lib/thimbl/utils.rb", "test/fixtures/cache.json", "test/fixtures/finger_dk_telekommunisten_org.txt", "test/fixtures/finger_dk_telekommunisten_org_two_break_lines.txt", "test/test_helper.rb", "test/thimbl_base_test.rb", "test/thimbl_command_test.rb", "
|
15
|
+
s.files = ["Gemfile", "Gemfile.lock", "Manifest", "README.md", "Rakefile", "bin/thimblr", "lib/thimbl.rb", "lib/thimbl/base.rb", "lib/thimbl/command.rb", "lib/thimbl/finger.rb", "lib/thimbl/utils.rb", "test/fixtures/cache.json", "test/fixtures/cache_error_nil.json", "test/fixtures/finger_dk_telekommunisten_org.txt", "test/fixtures/finger_dk_telekommunisten_org_two_break_lines.txt", "test/test_helper.rb", "test/thimbl_base_test.rb", "test/thimbl_command_test.rb", "test/thimbl_utils_test.rb", "thimbl.gemspec"]
|
16
16
|
s.homepage = %q{http://github.com/fguillen/ThimblClient}
|
17
17
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Thimbl", "--main", "README.md"]
|
18
18
|
s.require_paths = ["lib"]
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thimbl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 31
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 2
|
10
|
+
version: 0.1.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Fernando Guillen
|
@@ -115,13 +115,14 @@ files:
|
|
115
115
|
- lib/thimbl/finger.rb
|
116
116
|
- lib/thimbl/utils.rb
|
117
117
|
- test/fixtures/cache.json
|
118
|
+
- test/fixtures/cache_error_nil.json
|
118
119
|
- test/fixtures/finger_dk_telekommunisten_org.txt
|
119
120
|
- test/fixtures/finger_dk_telekommunisten_org_two_break_lines.txt
|
120
121
|
- test/test_helper.rb
|
121
122
|
- test/thimbl_base_test.rb
|
122
123
|
- test/thimbl_command_test.rb
|
123
|
-
- thimbl.gemspec
|
124
124
|
- test/thimbl_utils_test.rb
|
125
|
+
- thimbl.gemspec
|
125
126
|
has_rdoc: true
|
126
127
|
homepage: http://github.com/fguillen/ThimblClient
|
127
128
|
licenses: []
|