octokit 1.0.7 → 1.1.0

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