octokit 1.0.7 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +1 -0
- data/lib/octokit/client.rb +3 -0
- data/lib/octokit/client/gists.rb +66 -0
- data/lib/octokit/gist.rb +27 -0
- data/lib/octokit/version.rb +1 -1
- data/spec/fixtures/timeline.json +1408 -1237
- data/spec/fixtures/v2/blob_metadata.json +2052 -1
- data/spec/fixtures/v2/blobs.json +260 -1
- data/spec/fixtures/v2/issues.json +49 -1
- data/spec/fixtures/v2/network_data.json +3551 -1
- data/spec/fixtures/v2/network_meta.json +2530 -1
- data/spec/fixtures/v2/repositories.json +173 -1
- data/spec/fixtures/v2/tree_metadata.json +2612 -1
- data/spec/fixtures/v2/user.json +19 -1
- data/spec/fixtures/v2/users.json +24 -1
- data/spec/fixtures/v3/blob.json +5 -5
- data/spec/fixtures/v3/branches.json +14 -14
- data/spec/fixtures/v3/collaborators.json +60 -60
- data/spec/fixtures/v3/comment.json +12 -12
- data/spec/fixtures/v3/comments.json +41 -41
- data/spec/fixtures/v3/commit.json +50 -1
- data/spec/fixtures/v3/commit_comment.json +17 -17
- data/spec/fixtures/v3/commit_comments.json +76 -76
- data/spec/fixtures/v3/commits.json +1414 -1
- data/spec/fixtures/v3/contributors.json +889 -889
- data/spec/fixtures/v3/download.json +9 -9
- data/spec/fixtures/v3/downloads.json +33 -33
- data/spec/fixtures/v3/emails.json +3 -3
- data/spec/fixtures/v3/followers.json +210 -210
- data/spec/fixtures/v3/following.json +207 -207
- data/spec/fixtures/v3/forks.json +870 -870
- data/spec/fixtures/v3/gist.json +51 -0
- data/spec/fixtures/v3/gists.json +548 -0
- data/spec/fixtures/v3/issue.json +33 -35
- data/spec/fixtures/v3/issue_closed.json +34 -36
- data/spec/fixtures/v3/issue_event.json +40 -42
- data/spec/fixtures/v3/issue_events.json +70 -70
- data/spec/fixtures/v3/issues.json +1559 -1577
- data/spec/fixtures/v3/label.json +3 -3
- data/spec/fixtures/v3/labels.json +15 -15
- data/spec/fixtures/v3/languages.json +3 -3
- data/spec/fixtures/v3/list_commit_comments.json +570 -570
- data/spec/fixtures/v3/milestone.json +9 -10
- data/spec/fixtures/v3/milestones.json +25 -25
- data/spec/fixtures/v3/not_found.json +1 -1
- data/spec/fixtures/v3/organization-repositories.json +4290 -4290
- data/spec/fixtures/v3/organization-repository.json +41 -41
- data/spec/fixtures/v3/organization.json +16 -16
- data/spec/fixtures/v3/organization_members.json +574 -574
- data/spec/fixtures/v3/organization_team_members.json +14 -14
- data/spec/fixtures/v3/organization_team_repos.json +60 -60
- data/spec/fixtures/v3/organizations.json +42 -42
- data/spec/fixtures/v3/public_events.json +1101 -1107
- data/spec/fixtures/v3/public_gists.json +968 -0
- data/spec/fixtures/v3/public_key.json +3 -3
- data/spec/fixtures/v3/public_keys.json +5 -5
- data/spec/fixtures/v3/pull_created.json +134 -134
- data/spec/fixtures/v3/pull_request.json +134 -134
- data/spec/fixtures/v3/pull_requests.json +185 -185
- data/spec/fixtures/v3/repo_events.json +1644 -1660
- data/spec/fixtures/v3/repo_issues_events.json +127 -133
- data/spec/fixtures/v3/repositories.json +871 -871
- data/spec/fixtures/v3/repository.json +33 -33
- data/spec/fixtures/v3/starred_gists.json +30 -0
- data/spec/fixtures/v3/tags.json +171 -171
- data/spec/fixtures/v3/team.json +6 -6
- data/spec/fixtures/v3/teams.json +10 -10
- data/spec/fixtures/v3/tree.json +110 -110
- data/spec/fixtures/v3/user.json +18 -18
- data/spec/fixtures/v3/user_events.json +99 -100
- data/spec/fixtures/v3/watched.json +1020 -1020
- data/spec/fixtures/v3/watchers.json +180 -180
- data/spec/octokit/client/gists_spec.rb +133 -0
- data/spec/octokit/gist_spec.rb +49 -0
- metadata +40 -26
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
* [1.1.0 - May 13, 2012](https://github.com/pengwynn/octokit/compare/v1.0.7...v1.1.0)
|
3
4
|
* [1.0.7 - May 11, 2012](https://github.com/pengwynn/octokit/compare/v1.0.6...v1.0.7)
|
4
5
|
* [1.0.6 - May 11, 2012](https://github.com/pengwynn/octokit/compare/v1.0.5...v1.0.6)
|
5
6
|
* [1.0.5 - May 2, 2012](https://github.com/pengwynn/octokit/compare/v1.0.4...v1.0.5)
|
data/lib/octokit/client.rb
CHANGED
@@ -1,10 +1,12 @@
|
|
1
1
|
require 'octokit/authentication'
|
2
2
|
require 'octokit/connection'
|
3
|
+
require 'octokit/gist'
|
3
4
|
require 'octokit/repository'
|
4
5
|
require 'octokit/request'
|
5
6
|
|
6
7
|
require 'octokit/client/commits'
|
7
8
|
require 'octokit/client/downloads'
|
9
|
+
require 'octokit/client/gists'
|
8
10
|
require 'octokit/client/issues'
|
9
11
|
require 'octokit/client/labels'
|
10
12
|
require 'octokit/client/network'
|
@@ -36,6 +38,7 @@ module Octokit
|
|
36
38
|
|
37
39
|
include Octokit::Client::Commits
|
38
40
|
include Octokit::Client::Downloads
|
41
|
+
include Octokit::Client::Gists
|
39
42
|
include Octokit::Client::Issues
|
40
43
|
include Octokit::Client::Labels
|
41
44
|
include Octokit::Client::Network
|
@@ -0,0 +1,66 @@
|
|
1
|
+
module Octokit
|
2
|
+
class Client
|
3
|
+
module Gists
|
4
|
+
|
5
|
+
def create_gist(options={})
|
6
|
+
post '/gists', options, 3
|
7
|
+
end
|
8
|
+
|
9
|
+
def delete_gist(gist, options={})
|
10
|
+
response = delete("/gists/#{Gist.new gist}", options, 3, true, true)
|
11
|
+
response.status == 204
|
12
|
+
end
|
13
|
+
|
14
|
+
def edit_gist(gist, options={})
|
15
|
+
patch "/gists/#{Gist.new gist}", options, 3
|
16
|
+
end
|
17
|
+
|
18
|
+
def gist(gist, options={})
|
19
|
+
get "/gists/#{Gist.new gist}", options, 3
|
20
|
+
end
|
21
|
+
|
22
|
+
def gists(username=nil, options={})
|
23
|
+
if username.nil?
|
24
|
+
get '/gists', options, 3
|
25
|
+
else
|
26
|
+
get "/users/#{username}/gists", options, 3
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
# Returns +true+ if +gist+ is starred, +false+ otherwise.
|
31
|
+
def gist_starred?(gist, options={})
|
32
|
+
begin
|
33
|
+
get("/gists/#{Gist.new gist}/star", options, 3, true, true)
|
34
|
+
return true
|
35
|
+
rescue Octokit::NotFound
|
36
|
+
return false
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def fork_gist(gist, options={})
|
41
|
+
post "/gists/#{Gist.new gist}/fork", options, 3
|
42
|
+
end
|
43
|
+
|
44
|
+
def public_gists(options={})
|
45
|
+
get '/gists', options, 3
|
46
|
+
end
|
47
|
+
|
48
|
+
def starred_gists(options={})
|
49
|
+
get '/gists/starred', options, 3
|
50
|
+
end
|
51
|
+
|
52
|
+
# Returns +true+ or +false+ based on success.
|
53
|
+
def star_gist(gist, options={})
|
54
|
+
response = put("/gists/#{Gist.new gist}/star", options, 3, true, true)
|
55
|
+
response.status == 204
|
56
|
+
end
|
57
|
+
|
58
|
+
# Returns +true+ or +false+ based on success.
|
59
|
+
def unstar_gist(gist, options={})
|
60
|
+
response = delete("/gists/#{Gist.new gist}/star", options, 3, true, true)
|
61
|
+
response.status == 204
|
62
|
+
end
|
63
|
+
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
data/lib/octokit/gist.rb
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'addressable/uri'
|
2
|
+
|
3
|
+
module Octokit
|
4
|
+
class Gist
|
5
|
+
attr_accessor :id
|
6
|
+
|
7
|
+
def self.from_url(url)
|
8
|
+
Gist.new(Addressable::URI.parse(url).path[1..-1])
|
9
|
+
end
|
10
|
+
|
11
|
+
def initialize(gist)
|
12
|
+
case gist
|
13
|
+
when Fixnum, String
|
14
|
+
@id = gist.to_s
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def to_s
|
19
|
+
@id
|
20
|
+
end
|
21
|
+
|
22
|
+
def url
|
23
|
+
"https://gist.github.com/#{@id}"
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
end
|
data/lib/octokit/version.rb
CHANGED
data/spec/fixtures/timeline.json
CHANGED
@@ -1,1237 +1,1408 @@
|
|
1
|
-
[
|
2
|
-
|
3
|
-
"
|
4
|
-
"
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
"
|
14
|
-
"
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
"
|
63
|
-
"
|
64
|
-
"
|
65
|
-
|
66
|
-
|
67
|
-
"
|
68
|
-
"
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
"
|
94
|
-
"
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
"
|
114
|
-
"
|
115
|
-
"
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
"
|
129
|
-
"
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
"
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
"
|
182
|
-
"
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
"
|
209
|
-
|
210
|
-
|
211
|
-
"
|
212
|
-
"
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
"
|
223
|
-
"
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
"
|
232
|
-
"
|
233
|
-
"
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
"
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
"
|
285
|
-
"
|
286
|
-
"
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
"
|
296
|
-
"
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
"
|
313
|
-
"
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
"
|
333
|
-
"
|
334
|
-
"url": "https://github.com/
|
335
|
-
|
336
|
-
|
337
|
-
"
|
338
|
-
"
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
"
|
346
|
-
"
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
"
|
371
|
-
"
|
372
|
-
|
373
|
-
|
374
|
-
"
|
375
|
-
"
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
"
|
386
|
-
"
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
"
|
411
|
-
"
|
412
|
-
"
|
413
|
-
},
|
414
|
-
|
415
|
-
"
|
416
|
-
"
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
"
|
425
|
-
"
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
"
|
460
|
-
"
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
"
|
480
|
-
"
|
481
|
-
"
|
482
|
-
|
483
|
-
|
484
|
-
"
|
485
|
-
"
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
"
|
495
|
-
"
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
"
|
527
|
-
"
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
"
|
538
|
-
"
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
"
|
555
|
-
"
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
"
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
{
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
"
|
597
|
-
"
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
"
|
618
|
-
"
|
619
|
-
"
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
"
|
631
|
-
"
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
"
|
648
|
-
"
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
"
|
669
|
-
"
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
"
|
674
|
-
"
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
"
|
685
|
-
"
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
"
|
723
|
-
"
|
724
|
-
"
|
725
|
-
|
726
|
-
|
727
|
-
"
|
728
|
-
"
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
"
|
736
|
-
"
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
"
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
"
|
762
|
-
"
|
763
|
-
"
|
764
|
-
|
765
|
-
|
766
|
-
"
|
767
|
-
"
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
},
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
"
|
810
|
-
"
|
811
|
-
"
|
812
|
-
|
813
|
-
|
814
|
-
"
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
"
|
821
|
-
"
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
"
|
838
|
-
"
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
"
|
858
|
-
"
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
"
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
"
|
887
|
-
"
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
"
|
907
|
-
"
|
908
|
-
"
|
909
|
-
|
910
|
-
|
911
|
-
"
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
"
|
920
|
-
"
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
"
|
937
|
-
"
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
"
|
962
|
-
"
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
"
|
972
|
-
"
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
"
|
981
|
-
"
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
"
|
1013
|
-
"
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
|
1037
|
-
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1041
|
-
|
1042
|
-
|
1043
|
-
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1047
|
-
|
1048
|
-
"
|
1049
|
-
"
|
1050
|
-
"
|
1051
|
-
|
1052
|
-
|
1053
|
-
"
|
1054
|
-
"
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1065
|
-
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1093
|
-
|
1094
|
-
|
1095
|
-
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
"
|
1102
|
-
"
|
1103
|
-
|
1104
|
-
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
"
|
1114
|
-
|
1115
|
-
|
1116
|
-
|
1117
|
-
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1124
|
-
|
1125
|
-
|
1126
|
-
|
1127
|
-
|
1128
|
-
|
1129
|
-
"
|
1130
|
-
"
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1135
|
-
|
1136
|
-
|
1137
|
-
|
1138
|
-
|
1139
|
-
|
1140
|
-
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1149
|
-
"
|
1150
|
-
"
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
|
1157
|
-
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1163
|
-
|
1164
|
-
|
1165
|
-
"
|
1166
|
-
"
|
1167
|
-
|
1168
|
-
|
1169
|
-
|
1170
|
-
|
1171
|
-
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1175
|
-
|
1176
|
-
"
|
1177
|
-
"
|
1178
|
-
"
|
1179
|
-
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
|
1189
|
-
"
|
1190
|
-
"
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
},
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1201
|
-
|
1202
|
-
|
1203
|
-
|
1204
|
-
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1216
|
-
"
|
1217
|
-
"
|
1218
|
-
"
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1227
|
-
"
|
1228
|
-
"
|
1229
|
-
|
1230
|
-
|
1231
|
-
|
1232
|
-
|
1233
|
-
|
1234
|
-
|
1235
|
-
|
1236
|
-
|
1237
|
-
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"actor": "edwardgeorge",
|
4
|
+
"actor_attributes": {
|
5
|
+
"blog": "http://insectsarerubbish.org",
|
6
|
+
"email": "this username / gmail",
|
7
|
+
"gravatar_id": "a6a6262b5fe436a9342d2d77488e983e",
|
8
|
+
"location": "London, UK",
|
9
|
+
"login": "edwardgeorge",
|
10
|
+
"name": "Edward George",
|
11
|
+
"type": "User"
|
12
|
+
},
|
13
|
+
"created_at": "2011/01/18 11:42:14 -0800",
|
14
|
+
"payload": {
|
15
|
+
"actor": "edwardgeorge",
|
16
|
+
"actor_gravatar": "a6a6262b5fe436a9342d2d77488e983e",
|
17
|
+
"head": "7f1b4a4b8223fca486f2b9d10bb7a2a57a96b727",
|
18
|
+
"ref": "refs/heads/master",
|
19
|
+
"repo": "edwardgeorge/homebrew",
|
20
|
+
"shas": [
|
21
|
+
[
|
22
|
+
"03eff409125f8e6abccc057d94032179b07612dc",
|
23
|
+
"justin@justinhileman.info",
|
24
|
+
"Version bump git-flow completion.\n\nSigned-off-by: Adam Vandenberg <flangy@gmail.com>",
|
25
|
+
"Justin Hileman"
|
26
|
+
],
|
27
|
+
[
|
28
|
+
"b8771541976f61d3acf5094f121a31e8be822bfb",
|
29
|
+
"uri.laserson@gmail.com",
|
30
|
+
"Added formula for unafold\n\nunafold is an extremely popular tool for computing secondary structures\nof nucleic acids, and it's a standard part of the bioinformatics\nrepertoire.\n\nSigned-off-by: Adam Vandenberg <flangy@gmail.com>",
|
31
|
+
"Uri Laserson"
|
32
|
+
],
|
33
|
+
[
|
34
|
+
"7f1b4a4b8223fca486f2b9d10bb7a2a57a96b727",
|
35
|
+
"edwardgeorge@gmail.com",
|
36
|
+
"Merge branch 'master' of http://github.com/mxcl/homebrew",
|
37
|
+
"Edward George"
|
38
|
+
]
|
39
|
+
],
|
40
|
+
"size": 3
|
41
|
+
},
|
42
|
+
"public": true,
|
43
|
+
"repository": {
|
44
|
+
"created_at": "2010/04/13 14:03:14 -0700",
|
45
|
+
"description": "The missing package manager for OS X",
|
46
|
+
"fork": true,
|
47
|
+
"forks": 1,
|
48
|
+
"has_downloads": false,
|
49
|
+
"has_issues": false,
|
50
|
+
"has_wiki": true,
|
51
|
+
"homepage": "http://mxcl.github.com/homebrew",
|
52
|
+
"language": "Ruby",
|
53
|
+
"name": "homebrew",
|
54
|
+
"open_issues": 0,
|
55
|
+
"owner": "edwardgeorge",
|
56
|
+
"private": false,
|
57
|
+
"pushed_at": "2011/01/18 11:42:10 -0800",
|
58
|
+
"size": 2348,
|
59
|
+
"url": "https://github.com/edwardgeorge/homebrew",
|
60
|
+
"watchers": 1
|
61
|
+
},
|
62
|
+
"times": 0,
|
63
|
+
"type": "PushEvent",
|
64
|
+
"url": "https://github.com//edwardgeorge/homebrew/compare/9be0b4fb2c...7f1b4a4b82"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"actor": "jw-00000",
|
68
|
+
"actor_attributes": {
|
69
|
+
"blog": "",
|
70
|
+
"email": "JW00000@gmail.com",
|
71
|
+
"gravatar_id": "ca45063da41a9f3aa9028295d8b66d89",
|
72
|
+
"login": "jw-00000",
|
73
|
+
"name": "JW",
|
74
|
+
"type": "User"
|
75
|
+
},
|
76
|
+
"created_at": "2011/01/18 11:42:12 -0800",
|
77
|
+
"payload": {
|
78
|
+
"actor": "jw-00000",
|
79
|
+
"actor_gravatar": "ca45063da41a9f3aa9028295d8b66d89",
|
80
|
+
"head": "2a3494ee454b55ea5db4dea86e3d69f56628a710",
|
81
|
+
"ref": "refs/heads/master",
|
82
|
+
"repo": "jw-00000/TV.be-reminder-parser",
|
83
|
+
"shas": [
|
84
|
+
[
|
85
|
+
"2a3494ee454b55ea5db4dea86e3d69f56628a710",
|
86
|
+
"JW00000@gmail.com",
|
87
|
+
"Rename 'tv.be' everywhere to 'yelo', the new name of the site.",
|
88
|
+
"JW"
|
89
|
+
]
|
90
|
+
],
|
91
|
+
"size": 1
|
92
|
+
},
|
93
|
+
"public": true,
|
94
|
+
"repository": {
|
95
|
+
"created_at": "2010/09/18 12:25:40 -0700",
|
96
|
+
"description": "This script parses your reminders on TV.be, and outputs them in a nice format. I then use this in Conky to display it in the background.",
|
97
|
+
"fork": false,
|
98
|
+
"forks": 1,
|
99
|
+
"has_downloads": false,
|
100
|
+
"has_issues": true,
|
101
|
+
"has_wiki": true,
|
102
|
+
"homepage": "",
|
103
|
+
"language": "Python",
|
104
|
+
"name": "TV.be-reminder-parser",
|
105
|
+
"open_issues": 1,
|
106
|
+
"owner": "jw-00000",
|
107
|
+
"private": false,
|
108
|
+
"pushed_at": "2011/01/18 11:42:11 -0800",
|
109
|
+
"size": 452,
|
110
|
+
"url": "https://github.com/jw-00000/TV.be-reminder-parser",
|
111
|
+
"watchers": 1
|
112
|
+
},
|
113
|
+
"times": 0,
|
114
|
+
"type": "PushEvent",
|
115
|
+
"url": "https://github.com//jw-00000/TV.be-reminder-parser/compare/d3d7cf1a0d...2a3494ee45"
|
116
|
+
},
|
117
|
+
{
|
118
|
+
"actor": "enjector",
|
119
|
+
"actor_attributes": {
|
120
|
+
"company": "Enjector Software",
|
121
|
+
"email": "contact@enjector.com",
|
122
|
+
"gravatar_id": "703d982517566c5f2f78ac894717da71",
|
123
|
+
"location": "Northampton, UK",
|
124
|
+
"login": "enjector",
|
125
|
+
"name": "Enjector",
|
126
|
+
"type": "User"
|
127
|
+
},
|
128
|
+
"created_at": "2011/01/18 11:42:10 -0800",
|
129
|
+
"payload": {
|
130
|
+
"actor": "enjector",
|
131
|
+
"actor_gravatar": "703d982517566c5f2f78ac894717da71",
|
132
|
+
"head": "03d52e3cf0458e4adf5fab8a029dbbdf0de110f3",
|
133
|
+
"ref": "refs/heads/master",
|
134
|
+
"repo": "enjector/ToolBlox",
|
135
|
+
"shas": [
|
136
|
+
[
|
137
|
+
"03d52e3cf0458e4adf5fab8a029dbbdf0de110f3",
|
138
|
+
"ajay.soni@enjector.com",
|
139
|
+
"first commit",
|
140
|
+
"Ajay Soni"
|
141
|
+
]
|
142
|
+
],
|
143
|
+
"size": 1
|
144
|
+
},
|
145
|
+
"public": true,
|
146
|
+
"repository": {
|
147
|
+
"created_at": "2011/01/18 08:09:07 -0800",
|
148
|
+
"description": "Some useful tools that we use in our software projects.",
|
149
|
+
"fork": false,
|
150
|
+
"forks": 1,
|
151
|
+
"has_downloads": true,
|
152
|
+
"has_issues": true,
|
153
|
+
"has_wiki": true,
|
154
|
+
"homepage": "http://www.enjector.com",
|
155
|
+
"language": "C#",
|
156
|
+
"name": "ToolBlox",
|
157
|
+
"open_issues": 0,
|
158
|
+
"owner": "enjector",
|
159
|
+
"private": false,
|
160
|
+
"pushed_at": "2011/01/18 11:42:10 -0800",
|
161
|
+
"size": 212,
|
162
|
+
"url": "https://github.com/enjector/ToolBlox",
|
163
|
+
"watchers": 1
|
164
|
+
},
|
165
|
+
"times": 0,
|
166
|
+
"type": "PushEvent",
|
167
|
+
"url": "https://github.com//enjector/ToolBlox/compare/cd4124c190...03d52e3cf0"
|
168
|
+
},
|
169
|
+
{
|
170
|
+
"actor": "experience",
|
171
|
+
"actor_attributes": {
|
172
|
+
"blog": "http://experienceinternet.co.uk/",
|
173
|
+
"company": "Experience Internet",
|
174
|
+
"email": "github.com@experienceinternet.co.uk",
|
175
|
+
"gravatar_id": "316c6066d51dacd1b216faba3cf6a259",
|
176
|
+
"location": "UK",
|
177
|
+
"login": "experience",
|
178
|
+
"name": "Stephen Lewis",
|
179
|
+
"type": "User"
|
180
|
+
},
|
181
|
+
"created_at": "2011/01/18 11:42:10 -0800",
|
182
|
+
"payload": {
|
183
|
+
"name": "YUI-Compressor-TextMate-Bundle",
|
184
|
+
"object": "branch",
|
185
|
+
"object_name": "master"
|
186
|
+
},
|
187
|
+
"public": true,
|
188
|
+
"repository": {
|
189
|
+
"created_at": "2011/01/18 11:33:38 -0800",
|
190
|
+
"description": "Easily combine and compress JavaScript and CSS files, right from within TextMate.",
|
191
|
+
"fork": false,
|
192
|
+
"forks": 1,
|
193
|
+
"has_downloads": true,
|
194
|
+
"has_issues": true,
|
195
|
+
"has_wiki": true,
|
196
|
+
"homepage": "",
|
197
|
+
"name": "YUI-Compressor-TextMate-Bundle",
|
198
|
+
"open_issues": 0,
|
199
|
+
"owner": "experience",
|
200
|
+
"private": false,
|
201
|
+
"pushed_at": "2011/01/18 11:42:09 -0800",
|
202
|
+
"size": 984,
|
203
|
+
"url": "https://github.com/experience/YUI-Compressor-TextMate-Bundle",
|
204
|
+
"watchers": 1
|
205
|
+
},
|
206
|
+
"times": 0,
|
207
|
+
"type": "CreateEvent",
|
208
|
+
"url": "https://github.com//experience/YUI-Compressor-TextMate-Bundle/compare/master"
|
209
|
+
},
|
210
|
+
{
|
211
|
+
"actor": "atambo",
|
212
|
+
"actor_attributes": {
|
213
|
+
"blog": "http://www.alextambellini.com",
|
214
|
+
"company": "",
|
215
|
+
"email": "atambellini@gmail.com",
|
216
|
+
"gravatar_id": "302c6c56b99912a673f1213b0709c902",
|
217
|
+
"location": "Pittsburgh",
|
218
|
+
"login": "atambo",
|
219
|
+
"name": "Alex Tambellini",
|
220
|
+
"type": "User"
|
221
|
+
},
|
222
|
+
"created_at": "2011/01/18 11:42:07 -0800",
|
223
|
+
"payload": {
|
224
|
+
"action": "create",
|
225
|
+
"actor": "atambo",
|
226
|
+
"actor_gravatar": "302c6c56b99912a673f1213b0709c902",
|
227
|
+
"name": "gist: 785005",
|
228
|
+
"snippet": "SEVERE: Application Error\norg.jruby.rack.RackInitializationException: OpenSSL::Cipher requires the jruby-openssl gem\n\tfrom file:/C:/application-framework/tomcat/webapps/scrapple/WEB-INF/lib/jruby-stdlib-1.5.6.jar!/META-INF/jruby.home/lib/ruby/site_ruby/shared/jruby/openssl/autoloads/cipher.rb:14",
|
229
|
+
"url": "https://gist.github.com/785005"
|
230
|
+
},
|
231
|
+
"public": true,
|
232
|
+
"times": 0,
|
233
|
+
"type": "GistEvent"
|
234
|
+
},
|
235
|
+
{
|
236
|
+
"actor": "grubeklee",
|
237
|
+
"actor_attributes": {
|
238
|
+
"gravatar_id": "a240724c57c69b7fbd6d71af3cd43fe8",
|
239
|
+
"login": "grubeklee",
|
240
|
+
"type": "User"
|
241
|
+
},
|
242
|
+
"created_at": "2011/01/18 11:42:06 -0800",
|
243
|
+
"payload": {
|
244
|
+
"actor": "grubeklee",
|
245
|
+
"actor_gravatar": "a240724c57c69b7fbd6d71af3cd43fe8",
|
246
|
+
"head": "ead1c462b8588b47660c072bf7729cd066f8ccfd",
|
247
|
+
"ref": "refs/heads/master",
|
248
|
+
"repo": "starchimpsgroup/3dvv",
|
249
|
+
"shas": [
|
250
|
+
[
|
251
|
+
"c6d2d8fbf467c79bb26c82bbaa8eccc262c30b49",
|
252
|
+
"sevennation@web.de",
|
253
|
+
"English",
|
254
|
+
"Grubeklee"
|
255
|
+
],
|
256
|
+
[
|
257
|
+
"ead1c462b8588b47660c072bf7729cd066f8ccfd",
|
258
|
+
"sevennation@web.de",
|
259
|
+
"MenuBar Item translate from german to english",
|
260
|
+
"Grubeklee"
|
261
|
+
]
|
262
|
+
],
|
263
|
+
"size": 2
|
264
|
+
},
|
265
|
+
"public": true,
|
266
|
+
"repository": {
|
267
|
+
"created_at": "2011/01/17 12:51:00 -0800",
|
268
|
+
"description": "Qt 3D Vector Viewer",
|
269
|
+
"fork": false,
|
270
|
+
"forks": 1,
|
271
|
+
"has_downloads": true,
|
272
|
+
"has_issues": true,
|
273
|
+
"has_wiki": true,
|
274
|
+
"homepage": "",
|
275
|
+
"name": "3dvv",
|
276
|
+
"open_issues": 0,
|
277
|
+
"owner": "starchimpsgroup",
|
278
|
+
"private": false,
|
279
|
+
"pushed_at": "2011/01/18 11:42:06 -0800",
|
280
|
+
"size": 108,
|
281
|
+
"url": "https://github.com/starchimpsgroup/3dvv",
|
282
|
+
"watchers": 2
|
283
|
+
},
|
284
|
+
"times": 0,
|
285
|
+
"type": "PushEvent",
|
286
|
+
"url": "https://github.com//starchimpsgroup/3dvv/compare/ee3d010d6e...ead1c462b8"
|
287
|
+
},
|
288
|
+
{
|
289
|
+
"actor": "Birdman84",
|
290
|
+
"actor_attributes": {
|
291
|
+
"gravatar_id": "578b18228651d59023d4644ba57f101d",
|
292
|
+
"login": "Birdman84",
|
293
|
+
"type": "User"
|
294
|
+
},
|
295
|
+
"created_at": "2011/01/18 11:42:05 -0800",
|
296
|
+
"payload": {
|
297
|
+
"actor": "Birdman84",
|
298
|
+
"actor_gravatar": "578b18228651d59023d4644ba57f101d",
|
299
|
+
"head": "5b08f24c66ffe8548e696cb31f5c9165fb8d21fa",
|
300
|
+
"ref": "refs/heads/master",
|
301
|
+
"repo": "MateuszWijas/Lightsaber",
|
302
|
+
"shas": [
|
303
|
+
[
|
304
|
+
"5b08f24c66ffe8548e696cb31f5c9165fb8d21fa",
|
305
|
+
"brian.hamelin@gmail.com",
|
306
|
+
"This commit is to undo the changes that I made to the README file",
|
307
|
+
"Brian Hamelin"
|
308
|
+
]
|
309
|
+
],
|
310
|
+
"size": 1
|
311
|
+
},
|
312
|
+
"public": true,
|
313
|
+
"repository": {
|
314
|
+
"created_at": "2011/01/15 17:02:13 -0800",
|
315
|
+
"description": "Simple blogging engine.",
|
316
|
+
"fork": false,
|
317
|
+
"forks": 2,
|
318
|
+
"has_downloads": true,
|
319
|
+
"has_issues": true,
|
320
|
+
"has_wiki": true,
|
321
|
+
"homepage": "",
|
322
|
+
"language": "PHP",
|
323
|
+
"name": "Lightsaber",
|
324
|
+
"open_issues": 0,
|
325
|
+
"owner": "MateuszWijas",
|
326
|
+
"private": false,
|
327
|
+
"pushed_at": "2011/01/18 11:42:04 -0800",
|
328
|
+
"size": 612,
|
329
|
+
"url": "https://github.com/MateuszWijas/Lightsaber",
|
330
|
+
"watchers": 2
|
331
|
+
},
|
332
|
+
"times": 0,
|
333
|
+
"type": "PushEvent",
|
334
|
+
"url": "https://github.com//MateuszWijas/Lightsaber/compare/cee8471703...5b08f24c66"
|
335
|
+
},
|
336
|
+
{
|
337
|
+
"actor": "kukems",
|
338
|
+
"actor_attributes": {
|
339
|
+
"blog": "www.acidbits.org",
|
340
|
+
"gravatar_id": "c94c7589b846ae4be09bc90faaefa91b",
|
341
|
+
"login": "kukems",
|
342
|
+
"name": "Lukasz",
|
343
|
+
"type": "User"
|
344
|
+
},
|
345
|
+
"created_at": "2011/01/18 11:42:05 -0800",
|
346
|
+
"payload": {
|
347
|
+
"name": "scala-examples",
|
348
|
+
"object": "repository",
|
349
|
+
"object_name": null
|
350
|
+
},
|
351
|
+
"public": true,
|
352
|
+
"repository": {
|
353
|
+
"created_at": "2011/01/18 11:42:04 -0800",
|
354
|
+
"description": "",
|
355
|
+
"fork": false,
|
356
|
+
"forks": 1,
|
357
|
+
"has_downloads": true,
|
358
|
+
"has_issues": true,
|
359
|
+
"has_wiki": true,
|
360
|
+
"homepage": "",
|
361
|
+
"name": "scala-examples",
|
362
|
+
"open_issues": 0,
|
363
|
+
"owner": "kukems",
|
364
|
+
"private": false,
|
365
|
+
"size": 0,
|
366
|
+
"url": "https://github.com/kukems/scala-examples",
|
367
|
+
"watchers": 1
|
368
|
+
},
|
369
|
+
"times": 0,
|
370
|
+
"type": "CreateEvent",
|
371
|
+
"url": "https://github.com//kukems/scala-examples"
|
372
|
+
},
|
373
|
+
{
|
374
|
+
"actor": "brazzy",
|
375
|
+
"actor_attributes": {
|
376
|
+
"blog": "http://www.brazzy.de/",
|
377
|
+
"company": "Object Vision Software AG",
|
378
|
+
"email": "brazzy@gmail.com",
|
379
|
+
"gravatar_id": "0382297f273df0a544b0c6c2734de096",
|
380
|
+
"location": "Munich, Germany",
|
381
|
+
"login": "brazzy",
|
382
|
+
"name": "Michael Borgwardt",
|
383
|
+
"type": "User"
|
384
|
+
},
|
385
|
+
"created_at": "2011/01/18 11:42:05 -0800",
|
386
|
+
"payload": {
|
387
|
+
"id": 72892,
|
388
|
+
"url": "http://cloud.github.com/downloads/brazzy/nikki/Nikki_1.0.jar.pack.gz"
|
389
|
+
},
|
390
|
+
"public": true,
|
391
|
+
"repository": {
|
392
|
+
"created_at": "2010/04/05 07:01:21 -0700",
|
393
|
+
"description": "GPS Photo diary - standalone Java app, geotagging, export to KMZ",
|
394
|
+
"fork": false,
|
395
|
+
"forks": 1,
|
396
|
+
"has_downloads": true,
|
397
|
+
"has_issues": true,
|
398
|
+
"has_wiki": true,
|
399
|
+
"homepage": "http://www.brazzy.de/nikki/",
|
400
|
+
"language": "Groovy",
|
401
|
+
"name": "nikki",
|
402
|
+
"open_issues": 16,
|
403
|
+
"owner": "brazzy",
|
404
|
+
"private": false,
|
405
|
+
"pushed_at": "2010/12/24 08:44:56 -0800",
|
406
|
+
"size": 54694,
|
407
|
+
"url": "https://github.com/brazzy/nikki",
|
408
|
+
"watchers": 1
|
409
|
+
},
|
410
|
+
"times": 0,
|
411
|
+
"type": "DownloadEvent",
|
412
|
+
"url": "https://github.com/"
|
413
|
+
},
|
414
|
+
{
|
415
|
+
"actor": "k-fish",
|
416
|
+
"actor_attributes": {
|
417
|
+
"email": "karsten@typo3.org",
|
418
|
+
"gravatar_id": "db9c76fa80a365925ca64c4c4818f371",
|
419
|
+
"location": "",
|
420
|
+
"login": "k-fish",
|
421
|
+
"name": "Karsten Dambekalns",
|
422
|
+
"type": "User"
|
423
|
+
},
|
424
|
+
"created_at": "2011/01/18 11:42:04 -0800",
|
425
|
+
"payload": {
|
426
|
+
"actor": "k-fish",
|
427
|
+
"actor_gravatar": "db9c76fa80a365925ca64c4c4818f371",
|
428
|
+
"head": "adb9c120584f156c02933c812f3a5a34df9aee8e",
|
429
|
+
"ref": "refs/heads/master",
|
430
|
+
"repo": "k-fish/Plat_Forms-2011",
|
431
|
+
"shas": [
|
432
|
+
[
|
433
|
+
"a7b5f7e9ee42156c21651e8f531e30906301559e",
|
434
|
+
"karsten@typo3.org",
|
435
|
+
"Enhance conference listing\n\nThe portal front now displays categories (M8) for drill-down (M13, M14)\nand lists upcoming conferences (M9), further seperated by start date\n(S10, m11, m12).",
|
436
|
+
"Karsten Dambekalns"
|
437
|
+
],
|
438
|
+
[
|
439
|
+
"3c716681f1282362d717ba4c450c0510ef3e5f03",
|
440
|
+
"karsten@typo3.org",
|
441
|
+
"Fix findCurrent methods in ConferenceRepository\n\n\"Running now\" query was broken and the filtering by category didn't work.",
|
442
|
+
"Karsten Dambekalns"
|
443
|
+
],
|
444
|
+
[
|
445
|
+
"4beae417e7291510c264ebcf6df13515b5646d45",
|
446
|
+
"karsten@typo3.org",
|
447
|
+
"Add conference single view",
|
448
|
+
"Karsten Dambekalns"
|
449
|
+
],
|
450
|
+
[
|
451
|
+
"adb9c120584f156c02933c812f3a5a34df9aee8e",
|
452
|
+
"karsten@typo3.org",
|
453
|
+
"Small documentation fix in FLOW3 base Repository",
|
454
|
+
"Karsten Dambekalns"
|
455
|
+
]
|
456
|
+
],
|
457
|
+
"size": 4
|
458
|
+
},
|
459
|
+
"public": true,
|
460
|
+
"repository": {
|
461
|
+
"created_at": "2011/01/14 07:21:37 -0800",
|
462
|
+
"description": "The FLOW3 project for the contest",
|
463
|
+
"fork": false,
|
464
|
+
"forks": 1,
|
465
|
+
"has_downloads": true,
|
466
|
+
"has_issues": true,
|
467
|
+
"has_wiki": true,
|
468
|
+
"homepage": "",
|
469
|
+
"language": "JavaScript",
|
470
|
+
"name": "Plat_Forms-2011",
|
471
|
+
"open_issues": 0,
|
472
|
+
"owner": "k-fish",
|
473
|
+
"private": false,
|
474
|
+
"pushed_at": "2011/01/18 11:42:03 -0800",
|
475
|
+
"size": 9568,
|
476
|
+
"url": "https://github.com/k-fish/Plat_Forms-2011",
|
477
|
+
"watchers": 3
|
478
|
+
},
|
479
|
+
"times": 0,
|
480
|
+
"type": "PushEvent",
|
481
|
+
"url": "https://github.com//k-fish/Plat_Forms-2011/compare/cc14b27d4c...adb9c12058"
|
482
|
+
},
|
483
|
+
{
|
484
|
+
"actor": "kevin1024",
|
485
|
+
"actor_attributes": {
|
486
|
+
"blog": "http://kevinmccarthy.org/",
|
487
|
+
"email": "me@kevinmccarthy.org",
|
488
|
+
"gravatar_id": "b3b78ba1acbf09ba202987d2d93ab72f",
|
489
|
+
"location": "Kailua, Hawaii",
|
490
|
+
"login": "kevin1024",
|
491
|
+
"name": "Kevin McCarthy",
|
492
|
+
"type": "User"
|
493
|
+
},
|
494
|
+
"created_at": "2011/01/18 11:42:00 -0800",
|
495
|
+
"payload": {
|
496
|
+
"action": "started",
|
497
|
+
"actor": "kevin1024",
|
498
|
+
"actor_gravatar": "b3b78ba1acbf09ba202987d2d93ab72f",
|
499
|
+
"repo": "coopernurse/node-pool"
|
500
|
+
},
|
501
|
+
"public": true,
|
502
|
+
"repository": {
|
503
|
+
"created_at": "2010/10/01 18:39:40 -0700",
|
504
|
+
"description": "Generic resource pooling for node.js",
|
505
|
+
"fork": false,
|
506
|
+
"forks": 4,
|
507
|
+
"has_downloads": true,
|
508
|
+
"has_issues": true,
|
509
|
+
"has_wiki": true,
|
510
|
+
"homepage": "",
|
511
|
+
"language": "JavaScript",
|
512
|
+
"name": "node-pool",
|
513
|
+
"open_issues": 1,
|
514
|
+
"owner": "coopernurse",
|
515
|
+
"private": false,
|
516
|
+
"pushed_at": "2011/01/17 15:32:47 -0800",
|
517
|
+
"size": 428,
|
518
|
+
"url": "https://github.com/coopernurse/node-pool",
|
519
|
+
"watchers": 33
|
520
|
+
},
|
521
|
+
"times": 0,
|
522
|
+
"type": "WatchEvent",
|
523
|
+
"url": "https://github.com//coopernurse/node-pool"
|
524
|
+
},
|
525
|
+
{
|
526
|
+
"actor": "gre",
|
527
|
+
"actor_attributes": {
|
528
|
+
"blog": "http:/grenlibre.fr",
|
529
|
+
"company": "Zenexity",
|
530
|
+
"email": "pro@grenlibre.fr",
|
531
|
+
"gravatar_id": "58ffb06383a945fe614248a01a288343",
|
532
|
+
"location": "France",
|
533
|
+
"login": "gre",
|
534
|
+
"name": "Renaudeau Gaetan",
|
535
|
+
"type": "User"
|
536
|
+
},
|
537
|
+
"created_at": "2011/01/18 11:41:57 -0800",
|
538
|
+
"payload": {
|
539
|
+
"actor": "gre",
|
540
|
+
"actor_gravatar": "58ffb06383a945fe614248a01a288343",
|
541
|
+
"head": "059b471b601c798190f2c479f0b534da906c7e67",
|
542
|
+
"ref": "refs/heads/master",
|
543
|
+
"repo": "gre/play-packages",
|
544
|
+
"shas": [
|
545
|
+
[
|
546
|
+
"059b471b601c798190f2c479f0b534da906c7e67",
|
547
|
+
"gre@zenexity.com",
|
548
|
+
"Using a patch for python2 replace instead of a sed",
|
549
|
+
"Gaetan Renaudeau"
|
550
|
+
]
|
551
|
+
],
|
552
|
+
"size": 1
|
553
|
+
},
|
554
|
+
"public": true,
|
555
|
+
"repository": {
|
556
|
+
"created_at": "2011/01/17 11:22:23 -0800",
|
557
|
+
"description": "Play Framework package sources for Linux distributions : ArchLinux, (more soon...)",
|
558
|
+
"fork": false,
|
559
|
+
"forks": 1,
|
560
|
+
"has_downloads": true,
|
561
|
+
"has_issues": true,
|
562
|
+
"has_wiki": true,
|
563
|
+
"homepage": "http://playframework.org/",
|
564
|
+
"name": "play-packages",
|
565
|
+
"open_issues": 0,
|
566
|
+
"owner": "gre",
|
567
|
+
"private": false,
|
568
|
+
"pushed_at": "2011/01/18 11:41:56 -0800",
|
569
|
+
"size": 380,
|
570
|
+
"url": "https://github.com/gre/play-packages",
|
571
|
+
"watchers": 1
|
572
|
+
},
|
573
|
+
"times": 0,
|
574
|
+
"type": "PushEvent",
|
575
|
+
"url": "https://github.com//gre/play-packages/compare/93d86eb5fb...059b471b60"
|
576
|
+
},
|
577
|
+
{
|
578
|
+
"actor": "jherdman",
|
579
|
+
"actor_attributes": {
|
580
|
+
"blog": "http://jherdman.github.com",
|
581
|
+
"company": "Celect.org",
|
582
|
+
"email": "james.herdman@me.com",
|
583
|
+
"gravatar_id": "afd42fff23928a20972d60744fcdca4a",
|
584
|
+
"location": "Toronto, ON",
|
585
|
+
"login": "jherdman",
|
586
|
+
"name": "James Herdman",
|
587
|
+
"type": "User"
|
588
|
+
},
|
589
|
+
"created_at": "2011/01/18 11:41:56 -0800",
|
590
|
+
"payload": {
|
591
|
+
"action": "started",
|
592
|
+
"actor": "jherdman",
|
593
|
+
"actor_gravatar": "afd42fff23928a20972d60744fcdca4a",
|
594
|
+
"repo": "pluginaweek/state_machine"
|
595
|
+
},
|
596
|
+
"public": true,
|
597
|
+
"repository": {
|
598
|
+
"created_at": "2008/06/24 20:41:05 -0700",
|
599
|
+
"description": "Adds support for creating state machines for attributes on any Ruby class",
|
600
|
+
"fork": false,
|
601
|
+
"forks": 52,
|
602
|
+
"has_downloads": true,
|
603
|
+
"has_issues": false,
|
604
|
+
"has_wiki": true,
|
605
|
+
"homepage": "http://www.pluginaweek.org",
|
606
|
+
"language": "Ruby",
|
607
|
+
"name": "state_machine",
|
608
|
+
"open_issues": 3,
|
609
|
+
"organization": "pluginaweek",
|
610
|
+
"owner": "pluginaweek",
|
611
|
+
"private": false,
|
612
|
+
"pushed_at": "2010/08/01 15:15:10 -0700",
|
613
|
+
"size": 4564,
|
614
|
+
"url": "https://github.com/pluginaweek/state_machine",
|
615
|
+
"watchers": 877
|
616
|
+
},
|
617
|
+
"times": 0,
|
618
|
+
"type": "WatchEvent",
|
619
|
+
"url": "https://github.com//pluginaweek/state_machine"
|
620
|
+
},
|
621
|
+
{
|
622
|
+
"actor": "dg",
|
623
|
+
"actor_attributes": {
|
624
|
+
"blog": "http://davidgrudl.com",
|
625
|
+
"gravatar_id": "583bcf76466286a687368ef66a21e5cd",
|
626
|
+
"login": "dg",
|
627
|
+
"name": "David Grudl",
|
628
|
+
"type": "User"
|
629
|
+
},
|
630
|
+
"created_at": "2011/01/18 11:41:55 -0800",
|
631
|
+
"payload": {
|
632
|
+
"actor": "dg",
|
633
|
+
"actor_gravatar": "583bcf76466286a687368ef66a21e5cd",
|
634
|
+
"head": "241773b2cb4cc289208e3b99a99dce5ec7887e52",
|
635
|
+
"ref": "refs/heads/master",
|
636
|
+
"repo": "nette/sandbox",
|
637
|
+
"shas": [
|
638
|
+
[
|
639
|
+
"241773b2cb4cc289208e3b99a99dce5ec7887e52",
|
640
|
+
"david@grudl.com",
|
641
|
+
"adminer: improved CSS and link to table",
|
642
|
+
"David Grudl"
|
643
|
+
]
|
644
|
+
],
|
645
|
+
"size": 1
|
646
|
+
},
|
647
|
+
"public": true,
|
648
|
+
"repository": {
|
649
|
+
"created_at": "2010/10/09 13:50:19 -0700",
|
650
|
+
"description": "The sandbox is a pre-packaged Nette Framework project, basic configured structure for your application.",
|
651
|
+
"fork": false,
|
652
|
+
"forks": 4,
|
653
|
+
"has_downloads": true,
|
654
|
+
"has_issues": true,
|
655
|
+
"has_wiki": true,
|
656
|
+
"homepage": "",
|
657
|
+
"language": "PHP",
|
658
|
+
"name": "sandbox",
|
659
|
+
"open_issues": 0,
|
660
|
+
"organization": "nette",
|
661
|
+
"owner": "nette",
|
662
|
+
"private": false,
|
663
|
+
"pushed_at": "2011/01/18 11:41:55 -0800",
|
664
|
+
"size": 1032,
|
665
|
+
"url": "https://github.com/nette/sandbox",
|
666
|
+
"watchers": 26
|
667
|
+
},
|
668
|
+
"times": 0,
|
669
|
+
"type": "PushEvent",
|
670
|
+
"url": "https://github.com//nette/sandbox/compare/39adac41a3...241773b2cb"
|
671
|
+
},
|
672
|
+
{
|
673
|
+
"actor": "mephux",
|
674
|
+
"actor_attributes": {
|
675
|
+
"blog": "http://www.lookycode.com",
|
676
|
+
"company": "LookyCode",
|
677
|
+
"email": "dustin.webber@gmail.com",
|
678
|
+
"gravatar_id": "4547f77730a1dcf64d10f842cd1f2042",
|
679
|
+
"location": "Detroit, Michigan",
|
680
|
+
"login": "mephux",
|
681
|
+
"name": "Dustin Webber",
|
682
|
+
"type": "User"
|
683
|
+
},
|
684
|
+
"created_at": "2011/01/18 11:41:54 -0800",
|
685
|
+
"payload": {
|
686
|
+
"actor": "mephux",
|
687
|
+
"actor_gravatar": "4547f77730a1dcf64d10f842cd1f2042",
|
688
|
+
"head": "a3a17b1767d4da4d8d9a3b00892f6092d1641309",
|
689
|
+
"ref": "refs/heads/2.2.1",
|
690
|
+
"repo": "Snorby/snorby",
|
691
|
+
"shas": [
|
692
|
+
[
|
693
|
+
"a3a17b1767d4da4d8d9a3b00892f6092d1641309",
|
694
|
+
"dustin.webber@gmail.com",
|
695
|
+
"version bump: 2.2.1",
|
696
|
+
"Dustin Willis Webber"
|
697
|
+
]
|
698
|
+
],
|
699
|
+
"size": 1
|
700
|
+
},
|
701
|
+
"public": true,
|
702
|
+
"repository": {
|
703
|
+
"created_at": "2010/10/09 12:09:49 -0700",
|
704
|
+
"description": "The Official Snorby 2.0 Repository",
|
705
|
+
"fork": false,
|
706
|
+
"forks": 1,
|
707
|
+
"has_downloads": true,
|
708
|
+
"has_issues": true,
|
709
|
+
"has_wiki": true,
|
710
|
+
"homepage": "http://www.snorby.org",
|
711
|
+
"language": "JavaScript",
|
712
|
+
"name": "snorby",
|
713
|
+
"open_issues": 7,
|
714
|
+
"organization": "Snorby",
|
715
|
+
"owner": "Snorby",
|
716
|
+
"private": false,
|
717
|
+
"pushed_at": "2011/01/18 11:41:53 -0800",
|
718
|
+
"size": 8372,
|
719
|
+
"url": "https://github.com/Snorby/snorby",
|
720
|
+
"watchers": 39
|
721
|
+
},
|
722
|
+
"times": 0,
|
723
|
+
"type": "PushEvent",
|
724
|
+
"url": "https://github.com//Snorby/snorby/compare/f9f6df2aa7...a3a17b1767"
|
725
|
+
},
|
726
|
+
{
|
727
|
+
"actor": "vogler",
|
728
|
+
"actor_attributes": {
|
729
|
+
"gravatar_id": "07c5d07f7a669cfcb9d1fb5a35c1762d",
|
730
|
+
"location": "Munich",
|
731
|
+
"login": "vogler",
|
732
|
+
"name": "Ralf Vogler",
|
733
|
+
"type": "User"
|
734
|
+
},
|
735
|
+
"created_at": "2011/01/18 11:41:53 -0800",
|
736
|
+
"payload": {
|
737
|
+
"name": "AR-Project",
|
738
|
+
"object": "branch",
|
739
|
+
"object_name": "master"
|
740
|
+
},
|
741
|
+
"public": true,
|
742
|
+
"repository": {
|
743
|
+
"created_at": "2011/01/18 11:33:09 -0800",
|
744
|
+
"description": "",
|
745
|
+
"fork": false,
|
746
|
+
"forks": 1,
|
747
|
+
"has_downloads": true,
|
748
|
+
"has_issues": true,
|
749
|
+
"has_wiki": true,
|
750
|
+
"homepage": "",
|
751
|
+
"language": "C++",
|
752
|
+
"name": "AR-Project",
|
753
|
+
"open_issues": 0,
|
754
|
+
"owner": "vogler",
|
755
|
+
"private": false,
|
756
|
+
"pushed_at": "2011/01/18 11:41:53 -0800",
|
757
|
+
"size": 144,
|
758
|
+
"url": "https://github.com/vogler/AR-Project",
|
759
|
+
"watchers": 1
|
760
|
+
},
|
761
|
+
"times": 0,
|
762
|
+
"type": "CreateEvent",
|
763
|
+
"url": "https://github.com//vogler/AR-Project/compare/master"
|
764
|
+
},
|
765
|
+
{
|
766
|
+
"actor": "nzeer",
|
767
|
+
"actor_attributes": {
|
768
|
+
"gravatar_id": "2b8b97fdeb23a1760eb4aae62d6e696b",
|
769
|
+
"login": "nzeer",
|
770
|
+
"type": "User"
|
771
|
+
},
|
772
|
+
"created_at": "2011/01/18 11:41:51 -0800",
|
773
|
+
"payload": {
|
774
|
+
"actor": "nzeer",
|
775
|
+
"actor_gravatar": "2b8b97fdeb23a1760eb4aae62d6e696b",
|
776
|
+
"head": "552d89311431d99e5a3bce0acc599f337152d01a",
|
777
|
+
"ref": "refs/heads/master",
|
778
|
+
"repo": "nzeer/Addons",
|
779
|
+
"shas": [
|
780
|
+
[
|
781
|
+
"552d89311431d99e5a3bce0acc599f337152d01a",
|
782
|
+
"rmjackson@gmail.com",
|
783
|
+
"updated addongit to 1.1-1",
|
784
|
+
"Robert Jackson"
|
785
|
+
]
|
786
|
+
],
|
787
|
+
"size": 1
|
788
|
+
},
|
789
|
+
"public": true,
|
790
|
+
"repository": {
|
791
|
+
"created_at": "2011/01/15 15:45:18 -0800",
|
792
|
+
"description": "",
|
793
|
+
"fork": false,
|
794
|
+
"forks": 1,
|
795
|
+
"has_downloads": true,
|
796
|
+
"has_issues": true,
|
797
|
+
"has_wiki": true,
|
798
|
+
"homepage": "",
|
799
|
+
"language": "Lua",
|
800
|
+
"name": "Addons",
|
801
|
+
"open_issues": 0,
|
802
|
+
"owner": "nzeer",
|
803
|
+
"private": false,
|
804
|
+
"pushed_at": "2011/01/18 11:41:51 -0800",
|
805
|
+
"size": 58268,
|
806
|
+
"url": "https://github.com/nzeer/Addons",
|
807
|
+
"watchers": 1
|
808
|
+
},
|
809
|
+
"times": 0,
|
810
|
+
"type": "PushEvent",
|
811
|
+
"url": "https://github.com//nzeer/Addons/compare/55c3e9e1bb...552d893114"
|
812
|
+
},
|
813
|
+
{
|
814
|
+
"actor": "cyril95",
|
815
|
+
"actor_attributes": {
|
816
|
+
"gravatar_id": "9730f3c36682db465037642fec551497",
|
817
|
+
"login": "cyril95",
|
818
|
+
"type": "User"
|
819
|
+
},
|
820
|
+
"created_at": "2011/01/18 11:41:50 -0800",
|
821
|
+
"payload": {
|
822
|
+
"actor": "cyril95",
|
823
|
+
"actor_gravatar": "9730f3c36682db465037642fec551497",
|
824
|
+
"head": "5c9b4a60fac5bfa5888010f9f5e5807ffbc9c9d1",
|
825
|
+
"ref": "refs/heads/master",
|
826
|
+
"repo": "cyril95/directory-generator-snom",
|
827
|
+
"shas": [
|
828
|
+
[
|
829
|
+
"5c9b4a60fac5bfa5888010f9f5e5807ffbc9c9d1",
|
830
|
+
"cyril@levis-heb.net",
|
831
|
+
"init annuaire",
|
832
|
+
"Cyril Levis"
|
833
|
+
]
|
834
|
+
],
|
835
|
+
"size": 1
|
836
|
+
},
|
837
|
+
"public": true,
|
838
|
+
"repository": {
|
839
|
+
"created_at": "2010/12/15 07:06:10 -0800",
|
840
|
+
"description": "Generate an SNOM tbook.xml directory from LDAP .",
|
841
|
+
"fork": false,
|
842
|
+
"forks": 1,
|
843
|
+
"has_downloads": true,
|
844
|
+
"has_issues": true,
|
845
|
+
"has_wiki": true,
|
846
|
+
"homepage": "",
|
847
|
+
"language": "Perl",
|
848
|
+
"name": "directory-generator-snom",
|
849
|
+
"open_issues": 0,
|
850
|
+
"owner": "cyril95",
|
851
|
+
"private": false,
|
852
|
+
"pushed_at": "2011/01/18 11:41:50 -0800",
|
853
|
+
"size": 172,
|
854
|
+
"url": "https://github.com/cyril95/directory-generator-snom",
|
855
|
+
"watchers": 1
|
856
|
+
},
|
857
|
+
"times": 0,
|
858
|
+
"type": "PushEvent",
|
859
|
+
"url": "https://github.com//cyril95/directory-generator-snom/compare/b9ac9f31d7...5c9b4a60fa"
|
860
|
+
},
|
861
|
+
{
|
862
|
+
"actor": "jsalvatier",
|
863
|
+
"actor_attributes": {
|
864
|
+
"gravatar_id": "ef51b6c49b0e2ee4c3bcced82868f4ec",
|
865
|
+
"login": "jsalvatier",
|
866
|
+
"name": "john salvatier",
|
867
|
+
"type": "User"
|
868
|
+
},
|
869
|
+
"created_at": "2011/01/18 11:41:46 -0800",
|
870
|
+
"payload": {
|
871
|
+
"actor": "jsalvatier",
|
872
|
+
"actor_gravatar": "ef51b6c49b0e2ee4c3bcced82868f4ec",
|
873
|
+
"head": "cab59ad64ecbbc4a85bc0f8a21f7470b3718a832",
|
874
|
+
"ref": "refs/heads/master",
|
875
|
+
"repo": "jsalvatier/multichain_mcmc",
|
876
|
+
"shas": [
|
877
|
+
[
|
878
|
+
"cab59ad64ecbbc4a85bc0f8a21f7470b3718a832",
|
879
|
+
"jsalvatier@gmail.com",
|
880
|
+
"added missing file",
|
881
|
+
"john salvatier"
|
882
|
+
]
|
883
|
+
],
|
884
|
+
"size": 1
|
885
|
+
},
|
886
|
+
"public": true,
|
887
|
+
"repository": {
|
888
|
+
"created_at": "2010/05/10 14:18:54 -0700",
|
889
|
+
"description": "Multichain MCMC framework and algorithms based on PyMC.",
|
890
|
+
"fork": false,
|
891
|
+
"forks": 1,
|
892
|
+
"has_downloads": true,
|
893
|
+
"has_issues": true,
|
894
|
+
"has_wiki": true,
|
895
|
+
"homepage": "pypi.python.org/pypi/multichain_mcmc",
|
896
|
+
"language": "Python",
|
897
|
+
"name": "multichain_mcmc",
|
898
|
+
"open_issues": 0,
|
899
|
+
"owner": "jsalvatier",
|
900
|
+
"private": false,
|
901
|
+
"pushed_at": "2011/01/18 11:41:45 -0800",
|
902
|
+
"size": 5144,
|
903
|
+
"url": "https://github.com/jsalvatier/multichain_mcmc",
|
904
|
+
"watchers": 2
|
905
|
+
},
|
906
|
+
"times": 0,
|
907
|
+
"type": "PushEvent",
|
908
|
+
"url": "https://github.com//jsalvatier/multichain_mcmc/compare/ea974483d2...cab59ad64e"
|
909
|
+
},
|
910
|
+
{
|
911
|
+
"actor": "flopezluis",
|
912
|
+
"actor_attributes": {
|
913
|
+
"email": "hola@flopezluis.es",
|
914
|
+
"gravatar_id": "81e618836ebb88a27d5c38e79037c2b2",
|
915
|
+
"login": "flopezluis",
|
916
|
+
"name": "flopez",
|
917
|
+
"type": "User"
|
918
|
+
},
|
919
|
+
"created_at": "2011/01/18 11:41:44 -0800",
|
920
|
+
"payload": {
|
921
|
+
"actor": "flopezluis",
|
922
|
+
"actor_gravatar": "81e618836ebb88a27d5c38e79037c2b2",
|
923
|
+
"head": "b22f202c63cab7a0bdff0977a524c6adb20cfecf",
|
924
|
+
"ref": "refs/heads/master",
|
925
|
+
"repo": "flopezluis/python_koans",
|
926
|
+
"shas": [
|
927
|
+
[
|
928
|
+
"b22f202c63cab7a0bdff0977a524c6adb20cfecf",
|
929
|
+
"hola@flopezluis.es",
|
930
|
+
"added two cases",
|
931
|
+
"flopezluis"
|
932
|
+
]
|
933
|
+
],
|
934
|
+
"size": 1
|
935
|
+
},
|
936
|
+
"public": true,
|
937
|
+
"repository": {
|
938
|
+
"created_at": "2011/01/17 06:56:25 -0800",
|
939
|
+
"description": "Mirror of Python Koans project",
|
940
|
+
"fork": true,
|
941
|
+
"forks": 0,
|
942
|
+
"has_downloads": true,
|
943
|
+
"has_issues": false,
|
944
|
+
"has_wiki": true,
|
945
|
+
"homepage": "http://bitbucket.org/gregmalcolm/python_koans/",
|
946
|
+
"language": "Python",
|
947
|
+
"name": "python_koans",
|
948
|
+
"open_issues": 0,
|
949
|
+
"owner": "flopezluis",
|
950
|
+
"private": false,
|
951
|
+
"pushed_at": "2011/01/18 11:41:43 -0800",
|
952
|
+
"size": 184,
|
953
|
+
"url": "https://github.com/flopezluis/python_koans",
|
954
|
+
"watchers": 1
|
955
|
+
},
|
956
|
+
"times": 0,
|
957
|
+
"type": "PushEvent",
|
958
|
+
"url": "https://github.com//flopezluis/python_koans/compare/45e72b2c25...b22f202c63"
|
959
|
+
},
|
960
|
+
{
|
961
|
+
"actor": "quickredfox",
|
962
|
+
"actor_attributes": {
|
963
|
+
"blog": "http://quickredfox.at",
|
964
|
+
"email": "me@quickredfox.at",
|
965
|
+
"gravatar_id": "8f04f964f253fb9729392065c8583847",
|
966
|
+
"location": "Montreal",
|
967
|
+
"login": "quickredfox",
|
968
|
+
"name": "Francois Lafortune",
|
969
|
+
"type": "User"
|
970
|
+
},
|
971
|
+
"created_at": "2011/01/18 11:41:41 -0800",
|
972
|
+
"payload": {
|
973
|
+
"action": "opened",
|
974
|
+
"actor": "quickredfox",
|
975
|
+
"actor_gravatar": "8f04f964f253fb9729392065c8583847",
|
976
|
+
"issue": 534932,
|
977
|
+
"number": 1,
|
978
|
+
"repo": "quickredfox/overlord"
|
979
|
+
},
|
980
|
+
"public": true,
|
981
|
+
"repository": {
|
982
|
+
"created_at": "2011/01/18 11:37:25 -0800",
|
983
|
+
"description": "An attempt at building flexible, nodejs-based automation tools without magical assumptions. ",
|
984
|
+
"fork": false,
|
985
|
+
"forks": 1,
|
986
|
+
"has_downloads": true,
|
987
|
+
"has_issues": true,
|
988
|
+
"has_wiki": true,
|
989
|
+
"homepage": "",
|
990
|
+
"name": "overlord",
|
991
|
+
"open_issues": 1,
|
992
|
+
"owner": "quickredfox",
|
993
|
+
"private": false,
|
994
|
+
"pushed_at": "2011/01/18 11:38:54 -0800",
|
995
|
+
"size": 108,
|
996
|
+
"url": "https://github.com/quickredfox/overlord",
|
997
|
+
"watchers": 1
|
998
|
+
},
|
999
|
+
"times": 0,
|
1000
|
+
"type": "IssuesEvent",
|
1001
|
+
"url": "https://github.com//quickredfox/overlord/issues/1/find"
|
1002
|
+
},
|
1003
|
+
{
|
1004
|
+
"actor": "byshovets",
|
1005
|
+
"actor_attributes": {
|
1006
|
+
"email": "byshovets@gmail.com",
|
1007
|
+
"gravatar_id": "dad9366cb3534ffc3135bd71419d86a1",
|
1008
|
+
"login": "byshovets",
|
1009
|
+
"name": "Vadim A. Byshovets",
|
1010
|
+
"type": "User"
|
1011
|
+
},
|
1012
|
+
"created_at": "2011/01/18 11:41:38 -0800",
|
1013
|
+
"payload": {
|
1014
|
+
"actor": "byshovets",
|
1015
|
+
"actor_gravatar": "dad9366cb3534ffc3135bd71419d86a1",
|
1016
|
+
"head": "c462ada7d0d4ff0c3fcc281db1c8e147cce2b971",
|
1017
|
+
"ref": "refs/heads/master",
|
1018
|
+
"repo": "byshovets/diploma",
|
1019
|
+
"shas": [
|
1020
|
+
[
|
1021
|
+
"c462ada7d0d4ff0c3fcc281db1c8e147cce2b971",
|
1022
|
+
"byshovets@gmail.com",
|
1023
|
+
"\u0433\u043e\u0442\u043e\u0432\u0438\u043c src",
|
1024
|
+
"Vadim A. Byshovets"
|
1025
|
+
]
|
1026
|
+
],
|
1027
|
+
"size": 1
|
1028
|
+
},
|
1029
|
+
"public": true,
|
1030
|
+
"repository": {
|
1031
|
+
"created_at": "2011/01/09 14:01:45 -0800",
|
1032
|
+
"description": "\u0414\u0438\u043f\u043b\u043e\u043c\u043d\u044b\u0439 \u043f\u0440\u043e\u0435\u043a\u0442",
|
1033
|
+
"fork": false,
|
1034
|
+
"forks": 1,
|
1035
|
+
"has_downloads": true,
|
1036
|
+
"has_issues": false,
|
1037
|
+
"has_wiki": false,
|
1038
|
+
"homepage": "http://bva.ath.cx",
|
1039
|
+
"name": "diploma",
|
1040
|
+
"open_issues": 0,
|
1041
|
+
"owner": "byshovets",
|
1042
|
+
"private": false,
|
1043
|
+
"pushed_at": "2011/01/18 11:41:38 -0800",
|
1044
|
+
"size": 864,
|
1045
|
+
"url": "https://github.com/byshovets/diploma",
|
1046
|
+
"watchers": 1
|
1047
|
+
},
|
1048
|
+
"times": 0,
|
1049
|
+
"type": "PushEvent",
|
1050
|
+
"url": "https://github.com//byshovets/diploma/compare/8341c8485f...c462ada7d0"
|
1051
|
+
},
|
1052
|
+
{
|
1053
|
+
"actor": "tc0nn",
|
1054
|
+
"actor_attributes": {
|
1055
|
+
"gravatar_id": "67988ff9685be91c891ee6b26a97cfb3",
|
1056
|
+
"login": "tc0nn",
|
1057
|
+
"type": "User"
|
1058
|
+
},
|
1059
|
+
"created_at": "2011/01/18 11:41:36 -0800",
|
1060
|
+
"payload": {
|
1061
|
+
"actor": "tc0nn",
|
1062
|
+
"actor_gravatar": "67988ff9685be91c891ee6b26a97cfb3",
|
1063
|
+
"head": "261c22a6720262f4e436aa38248500f24089c5a4",
|
1064
|
+
"ref": "refs/heads/master",
|
1065
|
+
"repo": "tc0nn/scripts",
|
1066
|
+
"shas": [
|
1067
|
+
[
|
1068
|
+
"261c22a6720262f4e436aa38248500f24089c5a4",
|
1069
|
+
"tim@timsnet.com",
|
1070
|
+
"Tue Jan 18 13:41:34 CST 2011 from itbox02",
|
1071
|
+
"Tim Connolly"
|
1072
|
+
]
|
1073
|
+
],
|
1074
|
+
"size": 1
|
1075
|
+
},
|
1076
|
+
"public": true,
|
1077
|
+
"repository": {
|
1078
|
+
"created_at": "2010/06/10 07:13:02 -0700",
|
1079
|
+
"description": "Home Directory Scripts",
|
1080
|
+
"fork": false,
|
1081
|
+
"forks": 1,
|
1082
|
+
"has_downloads": true,
|
1083
|
+
"has_issues": true,
|
1084
|
+
"has_wiki": true,
|
1085
|
+
"homepage": "",
|
1086
|
+
"language": "Python",
|
1087
|
+
"name": "scripts",
|
1088
|
+
"open_issues": 0,
|
1089
|
+
"owner": "tc0nn",
|
1090
|
+
"private": false,
|
1091
|
+
"pushed_at": "2011/01/18 11:41:35 -0800",
|
1092
|
+
"size": 31744,
|
1093
|
+
"url": "https://github.com/tc0nn/scripts",
|
1094
|
+
"watchers": 1
|
1095
|
+
},
|
1096
|
+
"times": 0,
|
1097
|
+
"type": "PushEvent",
|
1098
|
+
"url": "https://github.com//tc0nn/scripts/compare/782458a20c...261c22a672"
|
1099
|
+
},
|
1100
|
+
{
|
1101
|
+
"actor": "ged",
|
1102
|
+
"actor_attributes": {
|
1103
|
+
"blog": "http://deveiate.org/",
|
1104
|
+
"company": "LAIKA, Inc.",
|
1105
|
+
"email": "ged@FaerieMUD.org",
|
1106
|
+
"gravatar_id": "04cdb622ce0aac272b61f23f373e2abf",
|
1107
|
+
"location": "Portland, OR",
|
1108
|
+
"login": "ged",
|
1109
|
+
"name": "Michael Granger",
|
1110
|
+
"type": "User"
|
1111
|
+
},
|
1112
|
+
"created_at": "2011/01/18 11:41:36 -0800",
|
1113
|
+
"payload": {
|
1114
|
+
"actor": "ged",
|
1115
|
+
"actor_gravatar": "04cdb622ce0aac272b61f23f373e2abf",
|
1116
|
+
"head": "e247b1362b23720dfe249d82e37b923a3d59b291",
|
1117
|
+
"ref": "refs/heads/master",
|
1118
|
+
"repo": "ged/treequel",
|
1119
|
+
"shas": [
|
1120
|
+
[
|
1121
|
+
"e247b1362b23720dfe249d82e37b923a3d59b291",
|
1122
|
+
"ged@FaerieMUD.org",
|
1123
|
+
"Bump patch version; simplify Treequel::Model#apply_applicable_mixins",
|
1124
|
+
"Michael Granger"
|
1125
|
+
]
|
1126
|
+
],
|
1127
|
+
"size": 1
|
1128
|
+
},
|
1129
|
+
"public": true,
|
1130
|
+
"repository": {
|
1131
|
+
"created_at": "2010/10/02 19:47:06 -0700",
|
1132
|
+
"description": "An LDAP toolkit for Ruby, intended to allow quick, easy access to LDAP directories in a manner consistent with LDAP's hierarchical, free-form nature. ",
|
1133
|
+
"fork": false,
|
1134
|
+
"forks": 2,
|
1135
|
+
"has_downloads": true,
|
1136
|
+
"has_issues": true,
|
1137
|
+
"has_wiki": true,
|
1138
|
+
"homepage": "http://deveiate.org/projects/Treequel",
|
1139
|
+
"language": "Ruby",
|
1140
|
+
"name": "treequel",
|
1141
|
+
"open_issues": 0,
|
1142
|
+
"owner": "ged",
|
1143
|
+
"private": false,
|
1144
|
+
"pushed_at": "2011/01/18 11:41:35 -0800",
|
1145
|
+
"size": 1392,
|
1146
|
+
"url": "https://github.com/ged/treequel",
|
1147
|
+
"watchers": 5
|
1148
|
+
},
|
1149
|
+
"times": 0,
|
1150
|
+
"type": "PushEvent",
|
1151
|
+
"url": "https://github.com//ged/treequel/compare/a85f86e419...e247b1362b"
|
1152
|
+
},
|
1153
|
+
{
|
1154
|
+
"actor": "surfer-43",
|
1155
|
+
"actor_attributes": {
|
1156
|
+
"blog": "www.perceptiondesign.ca",
|
1157
|
+
"company": "Perception Design",
|
1158
|
+
"email": "surfer_43@hotmail.com",
|
1159
|
+
"gravatar_id": "b293d93a09584a463212bcc133d674a0",
|
1160
|
+
"location": "Toronto, Ontario",
|
1161
|
+
"login": "surfer-43",
|
1162
|
+
"name": "Joel Brown",
|
1163
|
+
"type": "User"
|
1164
|
+
},
|
1165
|
+
"created_at": "2011/01/18 11:41:33 -0800",
|
1166
|
+
"payload": {
|
1167
|
+
"actor": "surfer-43",
|
1168
|
+
"actor_gravatar": "b293d93a09584a463212bcc133d674a0",
|
1169
|
+
"target": {
|
1170
|
+
"followers": 10,
|
1171
|
+
"gravatar_id": "1b346806896108e27a5e90349ac7a281",
|
1172
|
+
"login": "pnitsch",
|
1173
|
+
"repos": 3
|
1174
|
+
}
|
1175
|
+
},
|
1176
|
+
"public": true,
|
1177
|
+
"times": 0,
|
1178
|
+
"type": "FollowEvent"
|
1179
|
+
},
|
1180
|
+
{
|
1181
|
+
"actor": "12meses12katas",
|
1182
|
+
"actor_attributes": {
|
1183
|
+
"blog": "www.12meses12katas.com",
|
1184
|
+
"gravatar_id": "c92497f11cb4bacfdf0e27ebb18dfe4f",
|
1185
|
+
"login": "12meses12katas",
|
1186
|
+
"name": "",
|
1187
|
+
"type": "User"
|
1188
|
+
},
|
1189
|
+
"created_at": "2011/01/18 11:41:28 -0800",
|
1190
|
+
"payload": {
|
1191
|
+
"action": "added",
|
1192
|
+
"actor": "12meses12katas",
|
1193
|
+
"actor_gravatar": "c92497f11cb4bacfdf0e27ebb18dfe4f",
|
1194
|
+
"member": "GermanDZ",
|
1195
|
+
"repo": "12meses12katas/Enero-String-Calculator"
|
1196
|
+
},
|
1197
|
+
"public": true,
|
1198
|
+
"repository": {
|
1199
|
+
"created_at": "2011/01/14 01:31:27 -0800",
|
1200
|
+
"description": "Kata del mes de Enero del 2011: String Calculator",
|
1201
|
+
"fork": false,
|
1202
|
+
"forks": 3,
|
1203
|
+
"has_downloads": true,
|
1204
|
+
"has_issues": true,
|
1205
|
+
"has_wiki": true,
|
1206
|
+
"homepage": "www.12meses12katas.com",
|
1207
|
+
"name": "Enero-String-Calculator",
|
1208
|
+
"open_issues": 1,
|
1209
|
+
"owner": "12meses12katas",
|
1210
|
+
"private": false,
|
1211
|
+
"pushed_at": "2011/01/14 08:07:57 -0800",
|
1212
|
+
"size": 108,
|
1213
|
+
"url": "https://github.com/12meses12katas/Enero-String-Calculator",
|
1214
|
+
"watchers": 20
|
1215
|
+
},
|
1216
|
+
"times": 0,
|
1217
|
+
"type": "MemberEvent",
|
1218
|
+
"url": "https://github.com//12meses12katas/Enero-String-Calculator"
|
1219
|
+
},
|
1220
|
+
{
|
1221
|
+
"actor": "opatut",
|
1222
|
+
"actor_attributes": {
|
1223
|
+
"gravatar_id": "5365a5d8c7b7389ef6c20a50189c8572",
|
1224
|
+
"login": "opatut",
|
1225
|
+
"type": "User"
|
1226
|
+
},
|
1227
|
+
"created_at": "2011/01/18 11:41:15 -0800",
|
1228
|
+
"payload": {
|
1229
|
+
"actor": "opatut",
|
1230
|
+
"actor_gravatar": "5365a5d8c7b7389ef6c20a50189c8572",
|
1231
|
+
"head": "1b467e61a6b6f9c737dfc08d1542ce82a37a3bc7",
|
1232
|
+
"ref": "refs/heads/master",
|
1233
|
+
"repo": "opatut/Shaders",
|
1234
|
+
"shas": [
|
1235
|
+
[
|
1236
|
+
"1b467e61a6b6f9c737dfc08d1542ce82a37a3bc7",
|
1237
|
+
"opatutlol@aol.com",
|
1238
|
+
"Funny mosaic.",
|
1239
|
+
"opatut"
|
1240
|
+
]
|
1241
|
+
],
|
1242
|
+
"size": 1
|
1243
|
+
},
|
1244
|
+
"public": true,
|
1245
|
+
"repository": {
|
1246
|
+
"created_at": "2011/01/18 09:52:20 -0800",
|
1247
|
+
"description": "Playing around with SFML and GLSL Shaders ",
|
1248
|
+
"fork": false,
|
1249
|
+
"forks": 1,
|
1250
|
+
"has_downloads": true,
|
1251
|
+
"has_issues": true,
|
1252
|
+
"has_wiki": true,
|
1253
|
+
"homepage": "",
|
1254
|
+
"name": "Shaders",
|
1255
|
+
"open_issues": 0,
|
1256
|
+
"owner": "opatut",
|
1257
|
+
"private": false,
|
1258
|
+
"pushed_at": "2011/01/18 11:41:14 -0800",
|
1259
|
+
"size": 108,
|
1260
|
+
"url": "https://github.com/opatut/Shaders",
|
1261
|
+
"watchers": 1
|
1262
|
+
},
|
1263
|
+
"times": 0,
|
1264
|
+
"type": "PushEvent",
|
1265
|
+
"url": "https://github.com//opatut/Shaders/compare/348bcef71a...1b467e61a6"
|
1266
|
+
},
|
1267
|
+
{
|
1268
|
+
"actor": "pawelpacana",
|
1269
|
+
"actor_attributes": {
|
1270
|
+
"blog": "http://bitbucket.org/sensei",
|
1271
|
+
"gravatar_id": "fcc3bb4ff848693a7532e74299aba106",
|
1272
|
+
"location": "Wroc\u0142aw",
|
1273
|
+
"login": "pawelpacana",
|
1274
|
+
"name": "Pawe\u0142 Pacana",
|
1275
|
+
"type": "User"
|
1276
|
+
},
|
1277
|
+
"created_at": "2011/01/18 11:41:12 -0800",
|
1278
|
+
"payload": {
|
1279
|
+
"actor": "pawelpacana",
|
1280
|
+
"actor_gravatar": "fcc3bb4ff848693a7532e74299aba106",
|
1281
|
+
"head": "fb6c6b7597f0f40b7b16bae75681cd689d66d227",
|
1282
|
+
"ref": "refs/heads/master",
|
1283
|
+
"repo": "drugpl/drug-site",
|
1284
|
+
"shas": [
|
1285
|
+
[
|
1286
|
+
"fb6c6b7597f0f40b7b16bae75681cd689d66d227",
|
1287
|
+
"pawel.pacana@gmail.com",
|
1288
|
+
"clickable header logo areat",
|
1289
|
+
"Pawe\u0142 Pacana"
|
1290
|
+
]
|
1291
|
+
],
|
1292
|
+
"size": 1
|
1293
|
+
},
|
1294
|
+
"public": true,
|
1295
|
+
"repository": {
|
1296
|
+
"created_at": "2011/01/18 08:20:14 -0800",
|
1297
|
+
"description": "strona drug.org.pl",
|
1298
|
+
"fork": false,
|
1299
|
+
"forks": 2,
|
1300
|
+
"has_downloads": true,
|
1301
|
+
"has_issues": true,
|
1302
|
+
"has_wiki": true,
|
1303
|
+
"homepage": "http://drug.org.pl",
|
1304
|
+
"language": "Ruby",
|
1305
|
+
"name": "drug-site",
|
1306
|
+
"open_issues": 0,
|
1307
|
+
"organization": "drugpl",
|
1308
|
+
"owner": "drugpl",
|
1309
|
+
"private": false,
|
1310
|
+
"pushed_at": "2011/01/18 11:41:11 -0800",
|
1311
|
+
"size": 712,
|
1312
|
+
"url": "https://github.com/drugpl/drug-site",
|
1313
|
+
"watchers": 3
|
1314
|
+
},
|
1315
|
+
"times": 0,
|
1316
|
+
"type": "PushEvent",
|
1317
|
+
"url": "https://github.com//drugpl/drug-site/compare/984584cd6c...fb6c6b7597"
|
1318
|
+
},
|
1319
|
+
{
|
1320
|
+
"actor": "torriem",
|
1321
|
+
"actor_attributes": {
|
1322
|
+
"gravatar_id": "8d99b6b5c23fe7b25b1ea7da1a9dfe1a",
|
1323
|
+
"login": "torriem",
|
1324
|
+
"type": "User"
|
1325
|
+
},
|
1326
|
+
"created_at": "2011/01/18 11:41:09 -0800",
|
1327
|
+
"payload": {
|
1328
|
+
"action": "opened",
|
1329
|
+
"actor": "torriem",
|
1330
|
+
"actor_gravatar": "8d99b6b5c23fe7b25b1ea7da1a9dfe1a",
|
1331
|
+
"issue": 534928,
|
1332
|
+
"number": 103,
|
1333
|
+
"repo": "zfs-linux/zfs"
|
1334
|
+
},
|
1335
|
+
"public": true,
|
1336
|
+
"repository": {
|
1337
|
+
"created_at": "2010/10/07 22:44:53 -0700",
|
1338
|
+
"description": "Native ZFS for Linux",
|
1339
|
+
"fork": true,
|
1340
|
+
"forks": 1,
|
1341
|
+
"has_downloads": true,
|
1342
|
+
"has_issues": true,
|
1343
|
+
"has_wiki": true,
|
1344
|
+
"homepage": "http://wiki.github.com/behlendorf/zfs/",
|
1345
|
+
"language": "C",
|
1346
|
+
"name": "zfs",
|
1347
|
+
"open_issues": 15,
|
1348
|
+
"organization": "zfs-linux",
|
1349
|
+
"owner": "zfs-linux",
|
1350
|
+
"private": false,
|
1351
|
+
"pushed_at": "2011/01/17 05:20:50 -0800",
|
1352
|
+
"size": 4216,
|
1353
|
+
"url": "https://github.com/zfs-linux/zfs",
|
1354
|
+
"watchers": 14
|
1355
|
+
},
|
1356
|
+
"times": 0,
|
1357
|
+
"type": "IssuesEvent",
|
1358
|
+
"url": "https://github.com//zfs-linux/zfs/issues/103/find"
|
1359
|
+
},
|
1360
|
+
{
|
1361
|
+
"actor": "tc0nn",
|
1362
|
+
"actor_attributes": {
|
1363
|
+
"gravatar_id": "67988ff9685be91c891ee6b26a97cfb3",
|
1364
|
+
"login": "tc0nn",
|
1365
|
+
"type": "User"
|
1366
|
+
},
|
1367
|
+
"created_at": "2011/01/18 11:41:08 -0800",
|
1368
|
+
"payload": {
|
1369
|
+
"actor": "tc0nn",
|
1370
|
+
"actor_gravatar": "67988ff9685be91c891ee6b26a97cfb3",
|
1371
|
+
"head": "782458a20c2f073ce510256d9dcc0a270ec565e6",
|
1372
|
+
"ref": "refs/heads/master",
|
1373
|
+
"repo": "tc0nn/scripts",
|
1374
|
+
"shas": [
|
1375
|
+
[
|
1376
|
+
"782458a20c2f073ce510256d9dcc0a270ec565e6",
|
1377
|
+
"tim@timsnet.com",
|
1378
|
+
"Tue Jan 18 13:41:06 CST 2011 from itbox02",
|
1379
|
+
"Tim Connolly"
|
1380
|
+
]
|
1381
|
+
],
|
1382
|
+
"size": 1
|
1383
|
+
},
|
1384
|
+
"public": true,
|
1385
|
+
"repository": {
|
1386
|
+
"created_at": "2010/06/10 07:13:02 -0700",
|
1387
|
+
"description": "Home Directory Scripts",
|
1388
|
+
"fork": false,
|
1389
|
+
"forks": 1,
|
1390
|
+
"has_downloads": true,
|
1391
|
+
"has_issues": true,
|
1392
|
+
"has_wiki": true,
|
1393
|
+
"homepage": "",
|
1394
|
+
"language": "Python",
|
1395
|
+
"name": "scripts",
|
1396
|
+
"open_issues": 0,
|
1397
|
+
"owner": "tc0nn",
|
1398
|
+
"private": false,
|
1399
|
+
"pushed_at": "2011/01/18 11:41:35 -0800",
|
1400
|
+
"size": 31744,
|
1401
|
+
"url": "https://github.com/tc0nn/scripts",
|
1402
|
+
"watchers": 1
|
1403
|
+
},
|
1404
|
+
"times": 0,
|
1405
|
+
"type": "PushEvent",
|
1406
|
+
"url": "https://github.com//tc0nn/scripts/compare/efd0de7b3b...782458a20c"
|
1407
|
+
}
|
1408
|
+
]
|