octokit 1.4.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/octokit/client.rb +0 -4
- data/lib/octokit/client/commits.rb +61 -3
- data/lib/octokit/client/issues.rb +0 -1
- data/lib/octokit/client/objects.rb +65 -20
- data/lib/octokit/client/organizations.rb +1 -6
- data/lib/octokit/client/repositories.rb +0 -5
- data/lib/octokit/client/users.rb +1 -7
- data/lib/octokit/version.rb +1 -1
- data/spec/fixtures/{v2 → legacy}/issues.json +0 -0
- data/spec/fixtures/{v2 → legacy}/repositories.json +0 -0
- data/spec/fixtures/{v2 → legacy}/users.json +0 -0
- data/spec/fixtures/v3/blob_create.json +3 -0
- data/spec/fixtures/v3/commit_create.json +25 -0
- data/spec/fixtures/v3/tree_create.json +14 -0
- data/spec/octokit/client/commits_spec.rb +16 -0
- data/spec/octokit/client/issues_spec.rb +1 -1
- data/spec/octokit/client/objects_spec.rb +23 -41
- data/spec/octokit/client/organizations_spec.rb +5 -20
- data/spec/octokit/client/repositories_spec.rb +1 -12
- data/spec/octokit/client/users_spec.rb +1 -12
- metadata +38 -54
- data/lib/octokit/client/network.rb +0 -15
- data/lib/octokit/client/timelines.rb +0 -21
- data/spec/fixtures/timeline.json +0 -1408
- data/spec/fixtures/v2/blob_metadata.json +0 -2052
- data/spec/fixtures/v2/blobs.json +0 -260
- data/spec/fixtures/v2/network_data.json +0 -3551
- data/spec/fixtures/v2/network_meta.json +0 -2530
- data/spec/fixtures/v2/raw.txt +0 -7
- data/spec/fixtures/v2/tree_metadata.json +0 -2612
- data/spec/fixtures/v2/user.json +0 -19
- data/spec/octokit/client/network_spec.rb +0 -32
- data/spec/octokit/client/timelines_spec.rb +0 -42
@@ -11,7 +11,7 @@ describe Octokit::Client::Repositories do
|
|
11
11
|
|
12
12
|
it "should return matching repositories" do
|
13
13
|
stub_get("https://api.github.com/legacy/repos/search/One40Proof").
|
14
|
-
to_return(:body => fixture("
|
14
|
+
to_return(:body => fixture("legacy/repositories.json"))
|
15
15
|
repositories = @client.search_repositories("One40Proof")
|
16
16
|
repositories.first.name.should == "One40Proof"
|
17
17
|
end
|
@@ -212,17 +212,6 @@ describe Octokit::Client::Repositories do
|
|
212
212
|
|
213
213
|
end
|
214
214
|
|
215
|
-
describe ".pushable" do
|
216
|
-
|
217
|
-
it "should return all pushable repositories" do
|
218
|
-
stub_get("https://github.com/api/v2/json/repos/pushable").
|
219
|
-
to_return(:body => fixture("v2/repositories.json"))
|
220
|
-
repositories = @client.pushable
|
221
|
-
repositories.first.name.should == "One40Proof"
|
222
|
-
end
|
223
|
-
|
224
|
-
end
|
225
|
-
|
226
215
|
describe ".repository_teams" do
|
227
216
|
|
228
217
|
it "should return all repository teams" do
|
@@ -13,24 +13,13 @@ describe Octokit::Client::Users do
|
|
13
13
|
|
14
14
|
it "should return matching username" do
|
15
15
|
stub_get("https://api.github.com/legacy/user/search/sferik").
|
16
|
-
to_return(:body => fixture("
|
16
|
+
to_return(:body => fixture("legacy/users.json"))
|
17
17
|
users = @client.search_users("sferik")
|
18
18
|
users.first.username.should == "sferik"
|
19
19
|
end
|
20
20
|
|
21
21
|
end
|
22
22
|
|
23
|
-
context "with an email address passed" do
|
24
|
-
|
25
|
-
it "should return matching email address" do
|
26
|
-
stub_get("https://github.com/api/v2/json/user/email/sferik@gmail.com").
|
27
|
-
to_return(:body => fixture("v2/user.json"))
|
28
|
-
user = @client.search_users("sferik@gmail.com")
|
29
|
-
user.login.should == "sferik"
|
30
|
-
end
|
31
|
-
|
32
|
-
end
|
33
|
-
|
34
23
|
end
|
35
24
|
|
36
25
|
describe ".user" do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: octokit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,11 +11,11 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2012-06-
|
14
|
+
date: 2012-06-14 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: addressable
|
18
|
-
requirement: &
|
18
|
+
requirement: &70202590806140 !ruby/object:Gem::Requirement
|
19
19
|
none: false
|
20
20
|
requirements:
|
21
21
|
- - ~>
|
@@ -23,10 +23,10 @@ dependencies:
|
|
23
23
|
version: '2.2'
|
24
24
|
type: :runtime
|
25
25
|
prerelease: false
|
26
|
-
version_requirements: *
|
26
|
+
version_requirements: *70202590806140
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: faraday
|
29
|
-
requirement: &
|
29
|
+
requirement: &70202590804960 !ruby/object:Gem::Requirement
|
30
30
|
none: false
|
31
31
|
requirements:
|
32
32
|
- - ~>
|
@@ -34,10 +34,10 @@ dependencies:
|
|
34
34
|
version: '0.8'
|
35
35
|
type: :runtime
|
36
36
|
prerelease: false
|
37
|
-
version_requirements: *
|
37
|
+
version_requirements: *70202590804960
|
38
38
|
- !ruby/object:Gem::Dependency
|
39
39
|
name: faraday_middleware
|
40
|
-
requirement: &
|
40
|
+
requirement: &70202590804140 !ruby/object:Gem::Requirement
|
41
41
|
none: false
|
42
42
|
requirements:
|
43
43
|
- - ~>
|
@@ -45,10 +45,10 @@ dependencies:
|
|
45
45
|
version: '0.8'
|
46
46
|
type: :runtime
|
47
47
|
prerelease: false
|
48
|
-
version_requirements: *
|
48
|
+
version_requirements: *70202590804140
|
49
49
|
- !ruby/object:Gem::Dependency
|
50
50
|
name: hashie
|
51
|
-
requirement: &
|
51
|
+
requirement: &70202590803040 !ruby/object:Gem::Requirement
|
52
52
|
none: false
|
53
53
|
requirements:
|
54
54
|
- - ~>
|
@@ -56,10 +56,10 @@ dependencies:
|
|
56
56
|
version: '1.2'
|
57
57
|
type: :runtime
|
58
58
|
prerelease: false
|
59
|
-
version_requirements: *
|
59
|
+
version_requirements: *70202590803040
|
60
60
|
- !ruby/object:Gem::Dependency
|
61
61
|
name: multi_json
|
62
|
-
requirement: &
|
62
|
+
requirement: &70202590801880 !ruby/object:Gem::Requirement
|
63
63
|
none: false
|
64
64
|
requirements:
|
65
65
|
- - ~>
|
@@ -67,10 +67,10 @@ dependencies:
|
|
67
67
|
version: '1.3'
|
68
68
|
type: :runtime
|
69
69
|
prerelease: false
|
70
|
-
version_requirements: *
|
70
|
+
version_requirements: *70202590801880
|
71
71
|
- !ruby/object:Gem::Dependency
|
72
72
|
name: json
|
73
|
-
requirement: &
|
73
|
+
requirement: &70202590801280 !ruby/object:Gem::Requirement
|
74
74
|
none: false
|
75
75
|
requirements:
|
76
76
|
- - ! '>='
|
@@ -78,10 +78,10 @@ dependencies:
|
|
78
78
|
version: '0'
|
79
79
|
type: :development
|
80
80
|
prerelease: false
|
81
|
-
version_requirements: *
|
81
|
+
version_requirements: *70202590801280
|
82
82
|
- !ruby/object:Gem::Dependency
|
83
83
|
name: maruku
|
84
|
-
requirement: &
|
84
|
+
requirement: &70202590800520 !ruby/object:Gem::Requirement
|
85
85
|
none: false
|
86
86
|
requirements:
|
87
87
|
- - ! '>='
|
@@ -89,10 +89,10 @@ dependencies:
|
|
89
89
|
version: '0'
|
90
90
|
type: :development
|
91
91
|
prerelease: false
|
92
|
-
version_requirements: *
|
92
|
+
version_requirements: *70202590800520
|
93
93
|
- !ruby/object:Gem::Dependency
|
94
94
|
name: rake
|
95
|
-
requirement: &
|
95
|
+
requirement: &70202590799340 !ruby/object:Gem::Requirement
|
96
96
|
none: false
|
97
97
|
requirements:
|
98
98
|
- - ! '>='
|
@@ -100,10 +100,10 @@ dependencies:
|
|
100
100
|
version: '0'
|
101
101
|
type: :development
|
102
102
|
prerelease: false
|
103
|
-
version_requirements: *
|
103
|
+
version_requirements: *70202590799340
|
104
104
|
- !ruby/object:Gem::Dependency
|
105
105
|
name: rspec
|
106
|
-
requirement: &
|
106
|
+
requirement: &70202590798640 !ruby/object:Gem::Requirement
|
107
107
|
none: false
|
108
108
|
requirements:
|
109
109
|
- - ! '>='
|
@@ -111,10 +111,10 @@ dependencies:
|
|
111
111
|
version: '0'
|
112
112
|
type: :development
|
113
113
|
prerelease: false
|
114
|
-
version_requirements: *
|
114
|
+
version_requirements: *70202590798640
|
115
115
|
- !ruby/object:Gem::Dependency
|
116
116
|
name: simplecov
|
117
|
-
requirement: &
|
117
|
+
requirement: &70202590813800 !ruby/object:Gem::Requirement
|
118
118
|
none: false
|
119
119
|
requirements:
|
120
120
|
- - ! '>='
|
@@ -122,10 +122,10 @@ dependencies:
|
|
122
122
|
version: '0'
|
123
123
|
type: :development
|
124
124
|
prerelease: false
|
125
|
-
version_requirements: *
|
125
|
+
version_requirements: *70202590813800
|
126
126
|
- !ruby/object:Gem::Dependency
|
127
127
|
name: webmock
|
128
|
-
requirement: &
|
128
|
+
requirement: &70202590812220 !ruby/object:Gem::Requirement
|
129
129
|
none: false
|
130
130
|
requirements:
|
131
131
|
- - ! '>='
|
@@ -133,10 +133,10 @@ dependencies:
|
|
133
133
|
version: '0'
|
134
134
|
type: :development
|
135
135
|
prerelease: false
|
136
|
-
version_requirements: *
|
136
|
+
version_requirements: *70202590812220
|
137
137
|
- !ruby/object:Gem::Dependency
|
138
138
|
name: yard
|
139
|
-
requirement: &
|
139
|
+
requirement: &70202590811620 !ruby/object:Gem::Requirement
|
140
140
|
none: false
|
141
141
|
requirements:
|
142
142
|
- - ! '>='
|
@@ -144,7 +144,7 @@ dependencies:
|
|
144
144
|
version: '0'
|
145
145
|
type: :development
|
146
146
|
prerelease: false
|
147
|
-
version_requirements: *
|
147
|
+
version_requirements: *70202590811620
|
148
148
|
description: Simple wrapper for the GitHub v3 API
|
149
149
|
email:
|
150
150
|
- wynn.netherland@gmail.com
|
@@ -176,7 +176,6 @@ files:
|
|
176
176
|
- lib/octokit/client/issues.rb
|
177
177
|
- lib/octokit/client/labels.rb
|
178
178
|
- lib/octokit/client/milestones.rb
|
179
|
-
- lib/octokit/client/network.rb
|
180
179
|
- lib/octokit/client/objects.rb
|
181
180
|
- lib/octokit/client/organizations.rb
|
182
181
|
- lib/octokit/client/pub_sub_hubbub.rb
|
@@ -184,7 +183,6 @@ files:
|
|
184
183
|
- lib/octokit/client/pulls.rb
|
185
184
|
- lib/octokit/client/refs.rb
|
186
185
|
- lib/octokit/client/repositories.rb
|
187
|
-
- lib/octokit/client/timelines.rb
|
188
186
|
- lib/octokit/client/users.rb
|
189
187
|
- lib/octokit/configuration.rb
|
190
188
|
- lib/octokit/connection.rb
|
@@ -195,20 +193,13 @@ files:
|
|
195
193
|
- lib/octokit/version.rb
|
196
194
|
- octokit.gemspec
|
197
195
|
- spec/faraday/response_spec.rb
|
198
|
-
- spec/fixtures/
|
199
|
-
- spec/fixtures/
|
200
|
-
- spec/fixtures/
|
201
|
-
- spec/fixtures/v2/issues.json
|
202
|
-
- spec/fixtures/v2/network_data.json
|
203
|
-
- spec/fixtures/v2/network_meta.json
|
204
|
-
- spec/fixtures/v2/raw.txt
|
205
|
-
- spec/fixtures/v2/repositories.json
|
206
|
-
- spec/fixtures/v2/tree_metadata.json
|
207
|
-
- spec/fixtures/v2/user.json
|
208
|
-
- spec/fixtures/v2/users.json
|
196
|
+
- spec/fixtures/legacy/issues.json
|
197
|
+
- spec/fixtures/legacy/repositories.json
|
198
|
+
- spec/fixtures/legacy/users.json
|
209
199
|
- spec/fixtures/v3/authorization.json
|
210
200
|
- spec/fixtures/v3/authorizations.json
|
211
201
|
- spec/fixtures/v3/blob.json
|
202
|
+
- spec/fixtures/v3/blob_create.json
|
212
203
|
- spec/fixtures/v3/branches.json
|
213
204
|
- spec/fixtures/v3/collaborators.json
|
214
205
|
- spec/fixtures/v3/comment.json
|
@@ -216,6 +207,7 @@ files:
|
|
216
207
|
- spec/fixtures/v3/commit.json
|
217
208
|
- spec/fixtures/v3/commit_comment.json
|
218
209
|
- spec/fixtures/v3/commit_comments.json
|
210
|
+
- spec/fixtures/v3/commit_create.json
|
219
211
|
- spec/fixtures/v3/commits.json
|
220
212
|
- spec/fixtures/v3/contributors.json
|
221
213
|
- spec/fixtures/v3/download.json
|
@@ -268,6 +260,7 @@ files:
|
|
268
260
|
- spec/fixtures/v3/team.json
|
269
261
|
- spec/fixtures/v3/teams.json
|
270
262
|
- spec/fixtures/v3/tree.json
|
263
|
+
- spec/fixtures/v3/tree_create.json
|
271
264
|
- spec/fixtures/v3/user.json
|
272
265
|
- spec/fixtures/v3/user_events.json
|
273
266
|
- spec/fixtures/v3/watched.json
|
@@ -282,7 +275,6 @@ files:
|
|
282
275
|
- spec/octokit/client/issues_spec.rb
|
283
276
|
- spec/octokit/client/labels_spec.rb
|
284
277
|
- spec/octokit/client/milestones_spec.rb
|
285
|
-
- spec/octokit/client/network_spec.rb
|
286
278
|
- spec/octokit/client/objects_spec.rb
|
287
279
|
- spec/octokit/client/organizations_spec.rb
|
288
280
|
- spec/octokit/client/pub_sub_hubbub/service_hooks_spec.rb
|
@@ -290,7 +282,6 @@ files:
|
|
290
282
|
- spec/octokit/client/pulls_spec.rb
|
291
283
|
- spec/octokit/client/refs_spec.rb
|
292
284
|
- spec/octokit/client/repositories_spec.rb
|
293
|
-
- spec/octokit/client/timelines_spec.rb
|
294
285
|
- spec/octokit/client/users_spec.rb
|
295
286
|
- spec/octokit/client_spec.rb
|
296
287
|
- spec/octokit/gist_spec.rb
|
@@ -322,20 +313,13 @@ specification_version: 3
|
|
322
313
|
summary: Simple wrapper for the GitHub v3 API
|
323
314
|
test_files:
|
324
315
|
- spec/faraday/response_spec.rb
|
325
|
-
- spec/fixtures/
|
326
|
-
- spec/fixtures/
|
327
|
-
- spec/fixtures/
|
328
|
-
- spec/fixtures/v2/issues.json
|
329
|
-
- spec/fixtures/v2/network_data.json
|
330
|
-
- spec/fixtures/v2/network_meta.json
|
331
|
-
- spec/fixtures/v2/raw.txt
|
332
|
-
- spec/fixtures/v2/repositories.json
|
333
|
-
- spec/fixtures/v2/tree_metadata.json
|
334
|
-
- spec/fixtures/v2/user.json
|
335
|
-
- spec/fixtures/v2/users.json
|
316
|
+
- spec/fixtures/legacy/issues.json
|
317
|
+
- spec/fixtures/legacy/repositories.json
|
318
|
+
- spec/fixtures/legacy/users.json
|
336
319
|
- spec/fixtures/v3/authorization.json
|
337
320
|
- spec/fixtures/v3/authorizations.json
|
338
321
|
- spec/fixtures/v3/blob.json
|
322
|
+
- spec/fixtures/v3/blob_create.json
|
339
323
|
- spec/fixtures/v3/branches.json
|
340
324
|
- spec/fixtures/v3/collaborators.json
|
341
325
|
- spec/fixtures/v3/comment.json
|
@@ -343,6 +327,7 @@ test_files:
|
|
343
327
|
- spec/fixtures/v3/commit.json
|
344
328
|
- spec/fixtures/v3/commit_comment.json
|
345
329
|
- spec/fixtures/v3/commit_comments.json
|
330
|
+
- spec/fixtures/v3/commit_create.json
|
346
331
|
- spec/fixtures/v3/commits.json
|
347
332
|
- spec/fixtures/v3/contributors.json
|
348
333
|
- spec/fixtures/v3/download.json
|
@@ -395,6 +380,7 @@ test_files:
|
|
395
380
|
- spec/fixtures/v3/team.json
|
396
381
|
- spec/fixtures/v3/teams.json
|
397
382
|
- spec/fixtures/v3/tree.json
|
383
|
+
- spec/fixtures/v3/tree_create.json
|
398
384
|
- spec/fixtures/v3/user.json
|
399
385
|
- spec/fixtures/v3/user_events.json
|
400
386
|
- spec/fixtures/v3/watched.json
|
@@ -409,7 +395,6 @@ test_files:
|
|
409
395
|
- spec/octokit/client/issues_spec.rb
|
410
396
|
- spec/octokit/client/labels_spec.rb
|
411
397
|
- spec/octokit/client/milestones_spec.rb
|
412
|
-
- spec/octokit/client/network_spec.rb
|
413
398
|
- spec/octokit/client/objects_spec.rb
|
414
399
|
- spec/octokit/client/organizations_spec.rb
|
415
400
|
- spec/octokit/client/pub_sub_hubbub/service_hooks_spec.rb
|
@@ -417,7 +402,6 @@ test_files:
|
|
417
402
|
- spec/octokit/client/pulls_spec.rb
|
418
403
|
- spec/octokit/client/refs_spec.rb
|
419
404
|
- spec/octokit/client/repositories_spec.rb
|
420
|
-
- spec/octokit/client/timelines_spec.rb
|
421
405
|
- spec/octokit/client/users_spec.rb
|
422
406
|
- spec/octokit/client_spec.rb
|
423
407
|
- spec/octokit/gist_spec.rb
|
@@ -1,15 +0,0 @@
|
|
1
|
-
module Octokit
|
2
|
-
class Client
|
3
|
-
module Network
|
4
|
-
def network_meta(repo, options={})
|
5
|
-
warn 'DEPRECATED: V3 of the API does not support this information. Support will be removed soon.'
|
6
|
-
get("/#{Repository.new(repo)}/network_meta", options, 2, false)
|
7
|
-
end
|
8
|
-
|
9
|
-
def network_data(repo, options={})
|
10
|
-
warn 'DEPRECATED: V3 of the API does not support this information. Support will be removed soon.'
|
11
|
-
get("/#{Repository.new(repo)}/network_data_chunk", options, 2, false)['commits']
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
@@ -1,21 +0,0 @@
|
|
1
|
-
module Octokit
|
2
|
-
class Client
|
3
|
-
module Timelines
|
4
|
-
def timeline(options={})
|
5
|
-
warn 'DEPRECATED: Please use Octokit.public_events instead.'
|
6
|
-
path = "/timeline.json"
|
7
|
-
get(path, options, 2, false)
|
8
|
-
end
|
9
|
-
|
10
|
-
def user_timeline(username=login, options={})
|
11
|
-
warn 'DEPRECATED: Please use Octokit.user_events instead.'
|
12
|
-
if authenticated?
|
13
|
-
path = "/#{username}.private.json"
|
14
|
-
else
|
15
|
-
path = "/#{username}.json"
|
16
|
-
end
|
17
|
-
get(path, options, 2, false)
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
data/spec/fixtures/timeline.json
DELETED
@@ -1,1408 +0,0 @@
|
|
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
|
-
]
|