octonaut 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,31 @@
1
+ require 'octonaut/printers/organizations'
2
+ require 'octonaut/printers/users'
3
+ require 'octonaut/printers/repositories'
4
+
5
+ module Octonaut
6
+ module Printer
7
+ include Octonaut::Printers::Users
8
+ include Octonaut::Printers::Repositories
9
+
10
+ def print_table(data)
11
+ data.each { | key, value | puts "#{key.rjust(data.keys.map(&:length).max)} #{value}" }
12
+ end
13
+
14
+ def print_csv(array, options = {})
15
+ raise ArgumentError.new("array of hashes required") unless array.first.kind_of?(Hash)
16
+ fields = options[:fields]
17
+ headers = fields.values
18
+ keys = fields.keys
19
+
20
+ puts headers.to_csv
21
+
22
+ array.each do |item|
23
+ data = []
24
+ keys.each {|key| data << item[key] }
25
+ puts item.inspect
26
+ puts data
27
+ end
28
+ end
29
+
30
+ end
31
+ end
@@ -0,0 +1,37 @@
1
+ module Octonaut
2
+ module Printers
3
+ module Organizations
4
+
5
+ ORG_FIELDS = {
6
+ "id" => "ID",
7
+ "created_at" => "JOINED",
8
+ "login" => "LOGIN",
9
+ "name" => "NAME",
10
+ "location" => "LOCATION",
11
+ "blog" => "URL"
12
+ }
13
+
14
+ def print_org_table(org, options = {})
15
+ data = {}
16
+ ORG_FIELDS.each do |field, heading|
17
+ data[heading] = org[field]
18
+ end
19
+
20
+ print_table(data)
21
+ end
22
+
23
+ def print_orgs(orgs, options = {})
24
+ options[:csv] ? print_csv_orgs(orgs) : ls_orgs(orgs)
25
+ end
26
+
27
+ def print_csv_orgs(orgs, options = {})
28
+ options[:fields] = ORG_FIELDS
29
+ print_csv orgs, options
30
+ end
31
+
32
+ def ls_orgs(orgs, options = {})
33
+ orgs.each {|o| puts o.login }
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,49 @@
1
+ module Octonaut
2
+ module Printers
3
+ module Repositories
4
+
5
+ REPOSITORY_FIELDS = {
6
+ "id" => "ID",
7
+ "name" => "NAME",
8
+ "full_name" => "FULL NAME",
9
+ "description" => "DESCRIPTION",
10
+ "default_branch" => "DEFAULT BRANCH",
11
+ "homepage" => "HOMEPAGE",
12
+ "language" => "PRIMARY LANGUAGE",
13
+ "open_issues" => "OPEN ISSUES",
14
+ "fork" => "FORK",
15
+ "forks_count" => "FORKS",
16
+ "watchers" => "STARS",
17
+ "private" => "PRIVATE",
18
+ "has_downloads" => "DOWNLOADS ENABLED",
19
+ "has_issues" => "ISSUES ENABLED",
20
+ "has_wiki" => "WIKI ENABLED",
21
+ "created_at" => "CREATED",
22
+ "pushed_at" => "LAST PUSH",
23
+ "updated_at" => "UPDATED"
24
+ }
25
+
26
+ def print_repo_table(repo, options = {})
27
+ data = {}
28
+ REPOSITORY_FIELDS.each do |field, heading|
29
+ data[heading] = repo[field]
30
+ end
31
+
32
+ print_table(data)
33
+ end
34
+
35
+ def print_repos(repos, options = {})
36
+ options[:csv] ? print_csv_repos(repos) : ls_repos(repos)
37
+ end
38
+
39
+ def print_csv_repos(repos, options = {})
40
+ options[:fields] = REPOSITORY_FIELDS
41
+ print_csv repos, options
42
+ end
43
+
44
+ def ls_repos(repos, options = {})
45
+ repos.each {|r| puts r.name }
46
+ end
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,41 @@
1
+ module Octonaut
2
+ module Printers
3
+ module Users
4
+
5
+ USER_FIELDS = {
6
+ "id" => "ID",
7
+ "login" => "LOGIN",
8
+ "name" => "NAME",
9
+ "company" => "COMPANY",
10
+ "location" => "LOCATION",
11
+ "followers" => "FOLLOWERS",
12
+ "following" => "FOLLOWING",
13
+ "hireable" => "HIREABLE",
14
+ "blog" => "URL",
15
+ "created_at" => "JOINED"
16
+ }
17
+
18
+ def print_user_table(user, options = {})
19
+ data = {}
20
+ USER_FIELDS.each do |field, heading|
21
+ data[heading] = user[field]
22
+ end
23
+
24
+ print_table(data)
25
+ end
26
+
27
+ def print_users(users, options = {})
28
+ options[:csv] ? print_csv_users(users) : ls_users(users)
29
+ end
30
+
31
+ def print_csv_users(users, options = {})
32
+ options[:fields] = USER_FIELDS
33
+ print_csv users, options
34
+ end
35
+
36
+ def ls_users(users, options = {})
37
+ users.each {|u| puts u.login }
38
+ end
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,3 @@
1
+ module Octonaut
2
+ VERSION = '0.0.1'
3
+ end
@@ -0,0 +1,32 @@
1
+ # Ensure we require the local version and not one we might have installed already
2
+ require File.join([File.dirname(__FILE__),'lib','octonaut','version.rb'])
3
+ spec = Gem::Specification.new do |s|
4
+ s.name = 'octonaut'
5
+ s.version = Octonaut::VERSION
6
+ s.author = ['Wynn Netherland', 'Larry Marburger']
7
+ s.email = 'wynn.netherland@gmail.com'
8
+ s.homepage = 'http://github.com/pengwynn'
9
+ s.licenses = ['MIT']
10
+ s.platform = Gem::Platform::RUBY
11
+ s.summary = 'CLI for GitHub'
12
+ s.files = `git ls-files`.split('\n')
13
+ s.files = %w(README.md LICENSE.md Rakefile octonaut.gemspec)
14
+ s.files += Dir.glob("lib/**/*.rb")
15
+ s.files += Dir.glob("bin/**/*")
16
+ s.files += Dir.glob("spec/**/*")
17
+ s.require_paths << 'lib'
18
+ s.bindir = 'bin'
19
+ s.executables << 'octonaut'
20
+ s.add_dependency('octokit', '~> 1.22.0')
21
+ s.add_dependency('launchy')
22
+ s.add_development_dependency('rake')
23
+ s.add_development_dependency('rdoc')
24
+ s.add_development_dependency('guard-cucumber')
25
+ s.add_development_dependency('rb-fsevent', '~> 0.9.1')
26
+ s.add_development_dependency('rspec', '~> 2.12.0')
27
+ s.add_development_dependency('rspec-mocks', '~> 2.12.0')
28
+ s.add_development_dependency 'simplecov'
29
+ s.add_development_dependency 'webmock'
30
+ s.add_runtime_dependency('gli','2.5.2')
31
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
32
+ end
@@ -0,0 +1,2 @@
1
+ machine api.github.com login defunkt password il0veruby
2
+ machine api.github.dev login defunkt password il0veruby
@@ -0,0 +1,10 @@
1
+ {
2
+ "Shell": 85600,
3
+ "Scala": 29,
4
+ "JavaScript": 91809,
5
+ "Ruby": 7787,
6
+ "Perl": 65525,
7
+ "Racket": 1223,
8
+ "PHP": 6139,
9
+ "VimL": 56988
10
+ }
@@ -0,0 +1,8 @@
1
+ Shell 85600
2
+ Scala 29
3
+ JavaScript 91809
4
+ Ruby 7787
5
+ Perl 65525
6
+ Racket 1223
7
+ PHP 6139
8
+ VimL 56988
@@ -0,0 +1,2522 @@
1
+ [
2
+ {
3
+ "id": 1861402,
4
+ "name": "ace",
5
+ "full_name": "defunkt/ace",
6
+ "owner": {
7
+ "login": "defunkt",
8
+ "id": 2,
9
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
10
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
11
+ "url": "https://api.github.com/users/defunkt",
12
+ "html_url": "https://github.com/defunkt",
13
+ "followers_url": "https://api.github.com/users/defunkt/followers",
14
+ "following_url": "https://api.github.com/users/defunkt/following",
15
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
16
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
17
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
18
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
19
+ "repos_url": "https://api.github.com/users/defunkt/repos",
20
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
21
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
22
+ "type": "User"
23
+ },
24
+ "private": false,
25
+ "html_url": "https://github.com/defunkt/ace",
26
+ "description": "Ajax.org Cloud9 Editor",
27
+ "fork": true,
28
+ "url": "https://api.github.com/repos/defunkt/ace",
29
+ "forks_url": "https://api.github.com/repos/defunkt/ace/forks",
30
+ "keys_url": "https://api.github.com/repos/defunkt/ace/keys{/key_id}",
31
+ "collaborators_url": "https://api.github.com/repos/defunkt/ace/collaborators{/collaborator}",
32
+ "teams_url": "https://api.github.com/repos/defunkt/ace/teams",
33
+ "hooks_url": "https://api.github.com/repos/defunkt/ace/hooks",
34
+ "issue_events_url": "https://api.github.com/repos/defunkt/ace/issues/events{/number}",
35
+ "events_url": "https://api.github.com/repos/defunkt/ace/events",
36
+ "assignees_url": "https://api.github.com/repos/defunkt/ace/assignees{/user}",
37
+ "branches_url": "https://api.github.com/repos/defunkt/ace/branches{/branch}",
38
+ "tags_url": "https://api.github.com/repos/defunkt/ace/tags{/tag}",
39
+ "blobs_url": "https://api.github.com/repos/defunkt/ace/git/blobs{/sha}",
40
+ "git_tags_url": "https://api.github.com/repos/defunkt/ace/git/tags{/sha}",
41
+ "git_refs_url": "https://api.github.com/repos/defunkt/ace/git/refs{/sha}",
42
+ "trees_url": "https://api.github.com/repos/defunkt/ace/git/trees{/sha}",
43
+ "statuses_url": "https://api.github.com/repos/defunkt/ace/statuses/{sha}",
44
+ "languages_url": "https://api.github.com/repos/defunkt/ace/languages",
45
+ "stargazers_url": "https://api.github.com/repos/defunkt/ace/stargazers",
46
+ "contributors_url": "https://api.github.com/repos/defunkt/ace/contributors",
47
+ "subscribers_url": "https://api.github.com/repos/defunkt/ace/subscribers",
48
+ "subscription_url": "https://api.github.com/repos/defunkt/ace/subscription",
49
+ "commits_url": "https://api.github.com/repos/defunkt/ace/commits{/sha}",
50
+ "git_commits_url": "https://api.github.com/repos/defunkt/ace/git/commits{/sha}",
51
+ "comments_url": "https://api.github.com/repos/defunkt/ace/comments{/number}",
52
+ "issue_comment_url": "https://api.github.com/repos/defunkt/ace/issues/comments/{number}",
53
+ "contents_url": "https://api.github.com/repos/defunkt/ace/contents/{+path}",
54
+ "compare_url": "https://api.github.com/repos/defunkt/ace/compare/{base}...{head}",
55
+ "merges_url": "https://api.github.com/repos/defunkt/ace/merges",
56
+ "archive_url": "https://api.github.com/repos/defunkt/ace/{archive_format}{/ref}",
57
+ "downloads_url": "https://api.github.com/repos/defunkt/ace/downloads",
58
+ "issues_url": "https://api.github.com/repos/defunkt/ace/issues{/number}",
59
+ "pulls_url": "https://api.github.com/repos/defunkt/ace/pulls{/number}",
60
+ "milestones_url": "https://api.github.com/repos/defunkt/ace/milestones{/number}",
61
+ "notifications_url": "https://api.github.com/repos/defunkt/ace/notifications{?since,all,participating}",
62
+ "labels_url": "https://api.github.com/repos/defunkt/ace/labels{/name}",
63
+ "created_at": "2011-06-07T18:41:40Z",
64
+ "updated_at": "2013-02-01T16:58:30Z",
65
+ "pushed_at": "2011-11-16T18:37:42Z",
66
+ "git_url": "git://github.com/defunkt/ace.git",
67
+ "ssh_url": "git@github.com:defunkt/ace.git",
68
+ "clone_url": "https://github.com/defunkt/ace.git",
69
+ "svn_url": "https://github.com/defunkt/ace",
70
+ "homepage": "http://ace.ajax.org",
71
+ "size": 112,
72
+ "watchers_count": 10,
73
+ "language": "JavaScript",
74
+ "has_issues": false,
75
+ "has_downloads": true,
76
+ "has_wiki": true,
77
+ "forks_count": 4,
78
+ "mirror_url": null,
79
+ "open_issues_count": 0,
80
+ "forks": 4,
81
+ "open_issues": 0,
82
+ "watchers": 10,
83
+ "master_branch": "master",
84
+ "default_branch": "master"
85
+ },
86
+ {
87
+ "id": 3594,
88
+ "name": "acts_as_textiled",
89
+ "full_name": "defunkt/acts_as_textiled",
90
+ "owner": {
91
+ "login": "defunkt",
92
+ "id": 2,
93
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
94
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
95
+ "url": "https://api.github.com/users/defunkt",
96
+ "html_url": "https://github.com/defunkt",
97
+ "followers_url": "https://api.github.com/users/defunkt/followers",
98
+ "following_url": "https://api.github.com/users/defunkt/following",
99
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
100
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
101
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
102
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
103
+ "repos_url": "https://api.github.com/users/defunkt/repos",
104
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
105
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
106
+ "type": "User"
107
+ },
108
+ "private": false,
109
+ "html_url": "https://github.com/defunkt/acts_as_textiled",
110
+ "description": "Makes your models act as textiled.",
111
+ "fork": false,
112
+ "url": "https://api.github.com/repos/defunkt/acts_as_textiled",
113
+ "forks_url": "https://api.github.com/repos/defunkt/acts_as_textiled/forks",
114
+ "keys_url": "https://api.github.com/repos/defunkt/acts_as_textiled/keys{/key_id}",
115
+ "collaborators_url": "https://api.github.com/repos/defunkt/acts_as_textiled/collaborators{/collaborator}",
116
+ "teams_url": "https://api.github.com/repos/defunkt/acts_as_textiled/teams",
117
+ "hooks_url": "https://api.github.com/repos/defunkt/acts_as_textiled/hooks",
118
+ "issue_events_url": "https://api.github.com/repos/defunkt/acts_as_textiled/issues/events{/number}",
119
+ "events_url": "https://api.github.com/repos/defunkt/acts_as_textiled/events",
120
+ "assignees_url": "https://api.github.com/repos/defunkt/acts_as_textiled/assignees{/user}",
121
+ "branches_url": "https://api.github.com/repos/defunkt/acts_as_textiled/branches{/branch}",
122
+ "tags_url": "https://api.github.com/repos/defunkt/acts_as_textiled/tags{/tag}",
123
+ "blobs_url": "https://api.github.com/repos/defunkt/acts_as_textiled/git/blobs{/sha}",
124
+ "git_tags_url": "https://api.github.com/repos/defunkt/acts_as_textiled/git/tags{/sha}",
125
+ "git_refs_url": "https://api.github.com/repos/defunkt/acts_as_textiled/git/refs{/sha}",
126
+ "trees_url": "https://api.github.com/repos/defunkt/acts_as_textiled/git/trees{/sha}",
127
+ "statuses_url": "https://api.github.com/repos/defunkt/acts_as_textiled/statuses/{sha}",
128
+ "languages_url": "https://api.github.com/repos/defunkt/acts_as_textiled/languages",
129
+ "stargazers_url": "https://api.github.com/repos/defunkt/acts_as_textiled/stargazers",
130
+ "contributors_url": "https://api.github.com/repos/defunkt/acts_as_textiled/contributors",
131
+ "subscribers_url": "https://api.github.com/repos/defunkt/acts_as_textiled/subscribers",
132
+ "subscription_url": "https://api.github.com/repos/defunkt/acts_as_textiled/subscription",
133
+ "commits_url": "https://api.github.com/repos/defunkt/acts_as_textiled/commits{/sha}",
134
+ "git_commits_url": "https://api.github.com/repos/defunkt/acts_as_textiled/git/commits{/sha}",
135
+ "comments_url": "https://api.github.com/repos/defunkt/acts_as_textiled/comments{/number}",
136
+ "issue_comment_url": "https://api.github.com/repos/defunkt/acts_as_textiled/issues/comments/{number}",
137
+ "contents_url": "https://api.github.com/repos/defunkt/acts_as_textiled/contents/{+path}",
138
+ "compare_url": "https://api.github.com/repos/defunkt/acts_as_textiled/compare/{base}...{head}",
139
+ "merges_url": "https://api.github.com/repos/defunkt/acts_as_textiled/merges",
140
+ "archive_url": "https://api.github.com/repos/defunkt/acts_as_textiled/{archive_format}{/ref}",
141
+ "downloads_url": "https://api.github.com/repos/defunkt/acts_as_textiled/downloads",
142
+ "issues_url": "https://api.github.com/repos/defunkt/acts_as_textiled/issues{/number}",
143
+ "pulls_url": "https://api.github.com/repos/defunkt/acts_as_textiled/pulls{/number}",
144
+ "milestones_url": "https://api.github.com/repos/defunkt/acts_as_textiled/milestones{/number}",
145
+ "notifications_url": "https://api.github.com/repos/defunkt/acts_as_textiled/notifications{?since,all,participating}",
146
+ "labels_url": "https://api.github.com/repos/defunkt/acts_as_textiled/labels{/name}",
147
+ "created_at": "2008-03-12T06:20:18Z",
148
+ "updated_at": "2013-02-01T16:58:17Z",
149
+ "pushed_at": "2011-07-21T21:38:47Z",
150
+ "git_url": "git://github.com/defunkt/acts_as_textiled.git",
151
+ "ssh_url": "git@github.com:defunkt/acts_as_textiled.git",
152
+ "clone_url": "https://github.com/defunkt/acts_as_textiled.git",
153
+ "svn_url": "https://github.com/defunkt/acts_as_textiled",
154
+ "homepage": "http://errtheblog.com/posts/12-actsastextiled",
155
+ "size": 204,
156
+ "watchers_count": 117,
157
+ "language": "Ruby",
158
+ "has_issues": false,
159
+ "has_downloads": false,
160
+ "has_wiki": false,
161
+ "forks_count": 31,
162
+ "mirror_url": null,
163
+ "open_issues_count": 4,
164
+ "forks": 31,
165
+ "open_issues": 4,
166
+ "watchers": 117,
167
+ "master_branch": "master",
168
+ "default_branch": "master"
169
+ },
170
+ {
171
+ "id": 36,
172
+ "name": "ambition",
173
+ "full_name": "defunkt/ambition",
174
+ "owner": {
175
+ "login": "defunkt",
176
+ "id": 2,
177
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
178
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
179
+ "url": "https://api.github.com/users/defunkt",
180
+ "html_url": "https://github.com/defunkt",
181
+ "followers_url": "https://api.github.com/users/defunkt/followers",
182
+ "following_url": "https://api.github.com/users/defunkt/following",
183
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
184
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
185
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
186
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
187
+ "repos_url": "https://api.github.com/users/defunkt/repos",
188
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
189
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
190
+ "type": "User"
191
+ },
192
+ "private": false,
193
+ "html_url": "https://github.com/defunkt/ambition",
194
+ "description": "include Enumerable — Unmaintained",
195
+ "fork": false,
196
+ "url": "https://api.github.com/repos/defunkt/ambition",
197
+ "forks_url": "https://api.github.com/repos/defunkt/ambition/forks",
198
+ "keys_url": "https://api.github.com/repos/defunkt/ambition/keys{/key_id}",
199
+ "collaborators_url": "https://api.github.com/repos/defunkt/ambition/collaborators{/collaborator}",
200
+ "teams_url": "https://api.github.com/repos/defunkt/ambition/teams",
201
+ "hooks_url": "https://api.github.com/repos/defunkt/ambition/hooks",
202
+ "issue_events_url": "https://api.github.com/repos/defunkt/ambition/issues/events{/number}",
203
+ "events_url": "https://api.github.com/repos/defunkt/ambition/events",
204
+ "assignees_url": "https://api.github.com/repos/defunkt/ambition/assignees{/user}",
205
+ "branches_url": "https://api.github.com/repos/defunkt/ambition/branches{/branch}",
206
+ "tags_url": "https://api.github.com/repos/defunkt/ambition/tags{/tag}",
207
+ "blobs_url": "https://api.github.com/repos/defunkt/ambition/git/blobs{/sha}",
208
+ "git_tags_url": "https://api.github.com/repos/defunkt/ambition/git/tags{/sha}",
209
+ "git_refs_url": "https://api.github.com/repos/defunkt/ambition/git/refs{/sha}",
210
+ "trees_url": "https://api.github.com/repos/defunkt/ambition/git/trees{/sha}",
211
+ "statuses_url": "https://api.github.com/repos/defunkt/ambition/statuses/{sha}",
212
+ "languages_url": "https://api.github.com/repos/defunkt/ambition/languages",
213
+ "stargazers_url": "https://api.github.com/repos/defunkt/ambition/stargazers",
214
+ "contributors_url": "https://api.github.com/repos/defunkt/ambition/contributors",
215
+ "subscribers_url": "https://api.github.com/repos/defunkt/ambition/subscribers",
216
+ "subscription_url": "https://api.github.com/repos/defunkt/ambition/subscription",
217
+ "commits_url": "https://api.github.com/repos/defunkt/ambition/commits{/sha}",
218
+ "git_commits_url": "https://api.github.com/repos/defunkt/ambition/git/commits{/sha}",
219
+ "comments_url": "https://api.github.com/repos/defunkt/ambition/comments{/number}",
220
+ "issue_comment_url": "https://api.github.com/repos/defunkt/ambition/issues/comments/{number}",
221
+ "contents_url": "https://api.github.com/repos/defunkt/ambition/contents/{+path}",
222
+ "compare_url": "https://api.github.com/repos/defunkt/ambition/compare/{base}...{head}",
223
+ "merges_url": "https://api.github.com/repos/defunkt/ambition/merges",
224
+ "archive_url": "https://api.github.com/repos/defunkt/ambition/{archive_format}{/ref}",
225
+ "downloads_url": "https://api.github.com/repos/defunkt/ambition/downloads",
226
+ "issues_url": "https://api.github.com/repos/defunkt/ambition/issues{/number}",
227
+ "pulls_url": "https://api.github.com/repos/defunkt/ambition/pulls{/number}",
228
+ "milestones_url": "https://api.github.com/repos/defunkt/ambition/milestones{/number}",
229
+ "notifications_url": "https://api.github.com/repos/defunkt/ambition/notifications{?since,all,participating}",
230
+ "labels_url": "https://api.github.com/repos/defunkt/ambition/labels{/name}",
231
+ "created_at": "2008-01-14T06:28:56Z",
232
+ "updated_at": "2013-03-15T16:16:15Z",
233
+ "pushed_at": "2009-06-11T17:31:05Z",
234
+ "git_url": "git://github.com/defunkt/ambition.git",
235
+ "ssh_url": "git@github.com:defunkt/ambition.git",
236
+ "clone_url": "https://github.com/defunkt/ambition.git",
237
+ "svn_url": "https://github.com/defunkt/ambition",
238
+ "homepage": "http://defunkt.io/ambition",
239
+ "size": 156,
240
+ "watchers_count": 140,
241
+ "language": "Ruby",
242
+ "has_issues": false,
243
+ "has_downloads": true,
244
+ "has_wiki": false,
245
+ "forks_count": 13,
246
+ "mirror_url": null,
247
+ "open_issues_count": 0,
248
+ "forks": 13,
249
+ "open_issues": 0,
250
+ "watchers": 140,
251
+ "master_branch": "master",
252
+ "default_branch": "master"
253
+ },
254
+ {
255
+ "id": 230,
256
+ "name": "ambitious_activeldap",
257
+ "full_name": "defunkt/ambitious_activeldap",
258
+ "owner": {
259
+ "login": "defunkt",
260
+ "id": 2,
261
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
262
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
263
+ "url": "https://api.github.com/users/defunkt",
264
+ "html_url": "https://github.com/defunkt",
265
+ "followers_url": "https://api.github.com/users/defunkt/followers",
266
+ "following_url": "https://api.github.com/users/defunkt/following",
267
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
268
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
269
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
270
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
271
+ "repos_url": "https://api.github.com/users/defunkt/repos",
272
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
273
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
274
+ "type": "User"
275
+ },
276
+ "private": false,
277
+ "html_url": "https://github.com/defunkt/ambitious_activeldap",
278
+ "description": "Ambition adapter for ActiveLdap",
279
+ "fork": true,
280
+ "url": "https://api.github.com/repos/defunkt/ambitious_activeldap",
281
+ "forks_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/forks",
282
+ "keys_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/keys{/key_id}",
283
+ "collaborators_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/collaborators{/collaborator}",
284
+ "teams_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/teams",
285
+ "hooks_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/hooks",
286
+ "issue_events_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/issues/events{/number}",
287
+ "events_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/events",
288
+ "assignees_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/assignees{/user}",
289
+ "branches_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/branches{/branch}",
290
+ "tags_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/tags{/tag}",
291
+ "blobs_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/git/blobs{/sha}",
292
+ "git_tags_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/git/tags{/sha}",
293
+ "git_refs_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/git/refs{/sha}",
294
+ "trees_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/git/trees{/sha}",
295
+ "statuses_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/statuses/{sha}",
296
+ "languages_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/languages",
297
+ "stargazers_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/stargazers",
298
+ "contributors_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/contributors",
299
+ "subscribers_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/subscribers",
300
+ "subscription_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/subscription",
301
+ "commits_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/commits{/sha}",
302
+ "git_commits_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/git/commits{/sha}",
303
+ "comments_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/comments{/number}",
304
+ "issue_comment_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/issues/comments/{number}",
305
+ "contents_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/contents/{+path}",
306
+ "compare_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/compare/{base}...{head}",
307
+ "merges_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/merges",
308
+ "archive_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/{archive_format}{/ref}",
309
+ "downloads_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/downloads",
310
+ "issues_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/issues{/number}",
311
+ "pulls_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/pulls{/number}",
312
+ "milestones_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/milestones{/number}",
313
+ "notifications_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/notifications{?since,all,participating}",
314
+ "labels_url": "https://api.github.com/repos/defunkt/ambitious_activeldap/labels{/name}",
315
+ "created_at": "2008-01-30T19:20:08Z",
316
+ "updated_at": "2013-02-01T16:58:15Z",
317
+ "pushed_at": "2008-03-26T19:10:57Z",
318
+ "git_url": "git://github.com/defunkt/ambitious_activeldap.git",
319
+ "ssh_url": "git@github.com:defunkt/ambitious_activeldap.git",
320
+ "clone_url": "https://github.com/defunkt/ambitious_activeldap.git",
321
+ "svn_url": "https://github.com/defunkt/ambitious_activeldap",
322
+ "homepage": "",
323
+ "size": 96,
324
+ "watchers_count": 3,
325
+ "language": "Ruby",
326
+ "has_issues": true,
327
+ "has_downloads": true,
328
+ "has_wiki": true,
329
+ "forks_count": 1,
330
+ "mirror_url": null,
331
+ "open_issues_count": 0,
332
+ "forks": 1,
333
+ "open_issues": 0,
334
+ "watchers": 3,
335
+ "master_branch": "master",
336
+ "default_branch": "master"
337
+ },
338
+ {
339
+ "id": 12641,
340
+ "name": "ambitious_activerecord",
341
+ "full_name": "defunkt/ambitious_activerecord",
342
+ "owner": {
343
+ "login": "defunkt",
344
+ "id": 2,
345
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
346
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
347
+ "url": "https://api.github.com/users/defunkt",
348
+ "html_url": "https://github.com/defunkt",
349
+ "followers_url": "https://api.github.com/users/defunkt/followers",
350
+ "following_url": "https://api.github.com/users/defunkt/following",
351
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
352
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
353
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
354
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
355
+ "repos_url": "https://api.github.com/users/defunkt/repos",
356
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
357
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
358
+ "type": "User"
359
+ },
360
+ "private": false,
361
+ "html_url": "https://github.com/defunkt/ambitious_activerecord",
362
+ "description": "Unmaintained Ambitious ActiveRecord adapter, for Ambition.",
363
+ "fork": false,
364
+ "url": "https://api.github.com/repos/defunkt/ambitious_activerecord",
365
+ "forks_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/forks",
366
+ "keys_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/keys{/key_id}",
367
+ "collaborators_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/collaborators{/collaborator}",
368
+ "teams_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/teams",
369
+ "hooks_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/hooks",
370
+ "issue_events_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/issues/events{/number}",
371
+ "events_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/events",
372
+ "assignees_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/assignees{/user}",
373
+ "branches_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/branches{/branch}",
374
+ "tags_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/tags{/tag}",
375
+ "blobs_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/git/blobs{/sha}",
376
+ "git_tags_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/git/tags{/sha}",
377
+ "git_refs_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/git/refs{/sha}",
378
+ "trees_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/git/trees{/sha}",
379
+ "statuses_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/statuses/{sha}",
380
+ "languages_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/languages",
381
+ "stargazers_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/stargazers",
382
+ "contributors_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/contributors",
383
+ "subscribers_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/subscribers",
384
+ "subscription_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/subscription",
385
+ "commits_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/commits{/sha}",
386
+ "git_commits_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/git/commits{/sha}",
387
+ "comments_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/comments{/number}",
388
+ "issue_comment_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/issues/comments/{number}",
389
+ "contents_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/contents/{+path}",
390
+ "compare_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/compare/{base}...{head}",
391
+ "merges_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/merges",
392
+ "archive_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/{archive_format}{/ref}",
393
+ "downloads_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/downloads",
394
+ "issues_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/issues{/number}",
395
+ "pulls_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/pulls{/number}",
396
+ "milestones_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/milestones{/number}",
397
+ "notifications_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/notifications{?since,all,participating}",
398
+ "labels_url": "https://api.github.com/repos/defunkt/ambitious_activerecord/labels{/name}",
399
+ "created_at": "2008-04-26T09:10:20Z",
400
+ "updated_at": "2013-03-05T13:19:14Z",
401
+ "pushed_at": "2008-04-26T10:14:04Z",
402
+ "git_url": "git://github.com/defunkt/ambitious_activerecord.git",
403
+ "ssh_url": "git@github.com:defunkt/ambitious_activerecord.git",
404
+ "clone_url": "https://github.com/defunkt/ambitious_activerecord.git",
405
+ "svn_url": "https://github.com/defunkt/ambitious_activerecord",
406
+ "homepage": "",
407
+ "size": 92,
408
+ "watchers_count": 14,
409
+ "language": "Ruby",
410
+ "has_issues": false,
411
+ "has_downloads": false,
412
+ "has_wiki": false,
413
+ "forks_count": 3,
414
+ "mirror_url": null,
415
+ "open_issues_count": 1,
416
+ "forks": 3,
417
+ "open_issues": 1,
418
+ "watchers": 14,
419
+ "master_branch": "master",
420
+ "default_branch": "master"
421
+ },
422
+ {
423
+ "id": 4180,
424
+ "name": "barefootexamples",
425
+ "full_name": "defunkt/barefootexamples",
426
+ "owner": {
427
+ "login": "defunkt",
428
+ "id": 2,
429
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
430
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
431
+ "url": "https://api.github.com/users/defunkt",
432
+ "html_url": "https://github.com/defunkt",
433
+ "followers_url": "https://api.github.com/users/defunkt/followers",
434
+ "following_url": "https://api.github.com/users/defunkt/following",
435
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
436
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
437
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
438
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
439
+ "repos_url": "https://api.github.com/users/defunkt/repos",
440
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
441
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
442
+ "type": "User"
443
+ },
444
+ "private": false,
445
+ "html_url": "https://github.com/defunkt/barefootexamples",
446
+ "description": "",
447
+ "fork": false,
448
+ "url": "https://api.github.com/repos/defunkt/barefootexamples",
449
+ "forks_url": "https://api.github.com/repos/defunkt/barefootexamples/forks",
450
+ "keys_url": "https://api.github.com/repos/defunkt/barefootexamples/keys{/key_id}",
451
+ "collaborators_url": "https://api.github.com/repos/defunkt/barefootexamples/collaborators{/collaborator}",
452
+ "teams_url": "https://api.github.com/repos/defunkt/barefootexamples/teams",
453
+ "hooks_url": "https://api.github.com/repos/defunkt/barefootexamples/hooks",
454
+ "issue_events_url": "https://api.github.com/repos/defunkt/barefootexamples/issues/events{/number}",
455
+ "events_url": "https://api.github.com/repos/defunkt/barefootexamples/events",
456
+ "assignees_url": "https://api.github.com/repos/defunkt/barefootexamples/assignees{/user}",
457
+ "branches_url": "https://api.github.com/repos/defunkt/barefootexamples/branches{/branch}",
458
+ "tags_url": "https://api.github.com/repos/defunkt/barefootexamples/tags{/tag}",
459
+ "blobs_url": "https://api.github.com/repos/defunkt/barefootexamples/git/blobs{/sha}",
460
+ "git_tags_url": "https://api.github.com/repos/defunkt/barefootexamples/git/tags{/sha}",
461
+ "git_refs_url": "https://api.github.com/repos/defunkt/barefootexamples/git/refs{/sha}",
462
+ "trees_url": "https://api.github.com/repos/defunkt/barefootexamples/git/trees{/sha}",
463
+ "statuses_url": "https://api.github.com/repos/defunkt/barefootexamples/statuses/{sha}",
464
+ "languages_url": "https://api.github.com/repos/defunkt/barefootexamples/languages",
465
+ "stargazers_url": "https://api.github.com/repos/defunkt/barefootexamples/stargazers",
466
+ "contributors_url": "https://api.github.com/repos/defunkt/barefootexamples/contributors",
467
+ "subscribers_url": "https://api.github.com/repos/defunkt/barefootexamples/subscribers",
468
+ "subscription_url": "https://api.github.com/repos/defunkt/barefootexamples/subscription",
469
+ "commits_url": "https://api.github.com/repos/defunkt/barefootexamples/commits{/sha}",
470
+ "git_commits_url": "https://api.github.com/repos/defunkt/barefootexamples/git/commits{/sha}",
471
+ "comments_url": "https://api.github.com/repos/defunkt/barefootexamples/comments{/number}",
472
+ "issue_comment_url": "https://api.github.com/repos/defunkt/barefootexamples/issues/comments/{number}",
473
+ "contents_url": "https://api.github.com/repos/defunkt/barefootexamples/contents/{+path}",
474
+ "compare_url": "https://api.github.com/repos/defunkt/barefootexamples/compare/{base}...{head}",
475
+ "merges_url": "https://api.github.com/repos/defunkt/barefootexamples/merges",
476
+ "archive_url": "https://api.github.com/repos/defunkt/barefootexamples/{archive_format}{/ref}",
477
+ "downloads_url": "https://api.github.com/repos/defunkt/barefootexamples/downloads",
478
+ "issues_url": "https://api.github.com/repos/defunkt/barefootexamples/issues{/number}",
479
+ "pulls_url": "https://api.github.com/repos/defunkt/barefootexamples/pulls{/number}",
480
+ "milestones_url": "https://api.github.com/repos/defunkt/barefootexamples/milestones{/number}",
481
+ "notifications_url": "https://api.github.com/repos/defunkt/barefootexamples/notifications{?since,all,participating}",
482
+ "labels_url": "https://api.github.com/repos/defunkt/barefootexamples/labels{/name}",
483
+ "created_at": "2008-03-17T06:29:50Z",
484
+ "updated_at": "2013-02-01T16:58:17Z",
485
+ "pushed_at": "2008-03-26T20:57:13Z",
486
+ "git_url": "git://github.com/defunkt/barefootexamples.git",
487
+ "ssh_url": "git@github.com:defunkt/barefootexamples.git",
488
+ "clone_url": "https://github.com/defunkt/barefootexamples.git",
489
+ "svn_url": "https://github.com/defunkt/barefootexamples",
490
+ "homepage": "",
491
+ "size": 92,
492
+ "watchers_count": 3,
493
+ "language": "Ruby",
494
+ "has_issues": true,
495
+ "has_downloads": true,
496
+ "has_wiki": true,
497
+ "forks_count": 0,
498
+ "mirror_url": null,
499
+ "open_issues_count": 0,
500
+ "forks": 0,
501
+ "open_issues": 0,
502
+ "watchers": 3,
503
+ "master_branch": "master",
504
+ "default_branch": "master"
505
+ },
506
+ {
507
+ "id": 15939,
508
+ "name": "body_matcher",
509
+ "full_name": "defunkt/body_matcher",
510
+ "owner": {
511
+ "login": "defunkt",
512
+ "id": 2,
513
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
514
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
515
+ "url": "https://api.github.com/users/defunkt",
516
+ "html_url": "https://github.com/defunkt",
517
+ "followers_url": "https://api.github.com/users/defunkt/followers",
518
+ "following_url": "https://api.github.com/users/defunkt/following",
519
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
520
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
521
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
522
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
523
+ "repos_url": "https://api.github.com/users/defunkt/repos",
524
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
525
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
526
+ "type": "User"
527
+ },
528
+ "private": false,
529
+ "html_url": "https://github.com/defunkt/body_matcher",
530
+ "description": "Simplify your view testing. Forget assert_select.",
531
+ "fork": true,
532
+ "url": "https://api.github.com/repos/defunkt/body_matcher",
533
+ "forks_url": "https://api.github.com/repos/defunkt/body_matcher/forks",
534
+ "keys_url": "https://api.github.com/repos/defunkt/body_matcher/keys{/key_id}",
535
+ "collaborators_url": "https://api.github.com/repos/defunkt/body_matcher/collaborators{/collaborator}",
536
+ "teams_url": "https://api.github.com/repos/defunkt/body_matcher/teams",
537
+ "hooks_url": "https://api.github.com/repos/defunkt/body_matcher/hooks",
538
+ "issue_events_url": "https://api.github.com/repos/defunkt/body_matcher/issues/events{/number}",
539
+ "events_url": "https://api.github.com/repos/defunkt/body_matcher/events",
540
+ "assignees_url": "https://api.github.com/repos/defunkt/body_matcher/assignees{/user}",
541
+ "branches_url": "https://api.github.com/repos/defunkt/body_matcher/branches{/branch}",
542
+ "tags_url": "https://api.github.com/repos/defunkt/body_matcher/tags{/tag}",
543
+ "blobs_url": "https://api.github.com/repos/defunkt/body_matcher/git/blobs{/sha}",
544
+ "git_tags_url": "https://api.github.com/repos/defunkt/body_matcher/git/tags{/sha}",
545
+ "git_refs_url": "https://api.github.com/repos/defunkt/body_matcher/git/refs{/sha}",
546
+ "trees_url": "https://api.github.com/repos/defunkt/body_matcher/git/trees{/sha}",
547
+ "statuses_url": "https://api.github.com/repos/defunkt/body_matcher/statuses/{sha}",
548
+ "languages_url": "https://api.github.com/repos/defunkt/body_matcher/languages",
549
+ "stargazers_url": "https://api.github.com/repos/defunkt/body_matcher/stargazers",
550
+ "contributors_url": "https://api.github.com/repos/defunkt/body_matcher/contributors",
551
+ "subscribers_url": "https://api.github.com/repos/defunkt/body_matcher/subscribers",
552
+ "subscription_url": "https://api.github.com/repos/defunkt/body_matcher/subscription",
553
+ "commits_url": "https://api.github.com/repos/defunkt/body_matcher/commits{/sha}",
554
+ "git_commits_url": "https://api.github.com/repos/defunkt/body_matcher/git/commits{/sha}",
555
+ "comments_url": "https://api.github.com/repos/defunkt/body_matcher/comments{/number}",
556
+ "issue_comment_url": "https://api.github.com/repos/defunkt/body_matcher/issues/comments/{number}",
557
+ "contents_url": "https://api.github.com/repos/defunkt/body_matcher/contents/{+path}",
558
+ "compare_url": "https://api.github.com/repos/defunkt/body_matcher/compare/{base}...{head}",
559
+ "merges_url": "https://api.github.com/repos/defunkt/body_matcher/merges",
560
+ "archive_url": "https://api.github.com/repos/defunkt/body_matcher/{archive_format}{/ref}",
561
+ "downloads_url": "https://api.github.com/repos/defunkt/body_matcher/downloads",
562
+ "issues_url": "https://api.github.com/repos/defunkt/body_matcher/issues{/number}",
563
+ "pulls_url": "https://api.github.com/repos/defunkt/body_matcher/pulls{/number}",
564
+ "milestones_url": "https://api.github.com/repos/defunkt/body_matcher/milestones{/number}",
565
+ "notifications_url": "https://api.github.com/repos/defunkt/body_matcher/notifications{?since,all,participating}",
566
+ "labels_url": "https://api.github.com/repos/defunkt/body_matcher/labels{/name}",
567
+ "created_at": "2008-05-11T04:54:44Z",
568
+ "updated_at": "2013-02-01T16:58:18Z",
569
+ "pushed_at": "2008-05-11T04:54:46Z",
570
+ "git_url": "git://github.com/defunkt/body_matcher.git",
571
+ "ssh_url": "git@github.com:defunkt/body_matcher.git",
572
+ "clone_url": "https://github.com/defunkt/body_matcher.git",
573
+ "svn_url": "https://github.com/defunkt/body_matcher",
574
+ "homepage": "http://ozmm.org/posts/some_ruby_code.html",
575
+ "size": 96,
576
+ "watchers_count": 6,
577
+ "language": "Ruby",
578
+ "has_issues": true,
579
+ "has_downloads": true,
580
+ "has_wiki": true,
581
+ "forks_count": 1,
582
+ "mirror_url": null,
583
+ "open_issues_count": 0,
584
+ "forks": 1,
585
+ "open_issues": 0,
586
+ "watchers": 6,
587
+ "master_branch": "master",
588
+ "default_branch": "master"
589
+ },
590
+ {
591
+ "id": 288271,
592
+ "name": "burn",
593
+ "full_name": "defunkt/burn",
594
+ "owner": {
595
+ "login": "defunkt",
596
+ "id": 2,
597
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
598
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
599
+ "url": "https://api.github.com/users/defunkt",
600
+ "html_url": "https://github.com/defunkt",
601
+ "followers_url": "https://api.github.com/users/defunkt/followers",
602
+ "following_url": "https://api.github.com/users/defunkt/following",
603
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
604
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
605
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
606
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
607
+ "repos_url": "https://api.github.com/users/defunkt/repos",
608
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
609
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
610
+ "type": "User"
611
+ },
612
+ "private": false,
613
+ "html_url": "https://github.com/defunkt/burn",
614
+ "description": "Sinatra => Campfire",
615
+ "fork": false,
616
+ "url": "https://api.github.com/repos/defunkt/burn",
617
+ "forks_url": "https://api.github.com/repos/defunkt/burn/forks",
618
+ "keys_url": "https://api.github.com/repos/defunkt/burn/keys{/key_id}",
619
+ "collaborators_url": "https://api.github.com/repos/defunkt/burn/collaborators{/collaborator}",
620
+ "teams_url": "https://api.github.com/repos/defunkt/burn/teams",
621
+ "hooks_url": "https://api.github.com/repos/defunkt/burn/hooks",
622
+ "issue_events_url": "https://api.github.com/repos/defunkt/burn/issues/events{/number}",
623
+ "events_url": "https://api.github.com/repos/defunkt/burn/events",
624
+ "assignees_url": "https://api.github.com/repos/defunkt/burn/assignees{/user}",
625
+ "branches_url": "https://api.github.com/repos/defunkt/burn/branches{/branch}",
626
+ "tags_url": "https://api.github.com/repos/defunkt/burn/tags{/tag}",
627
+ "blobs_url": "https://api.github.com/repos/defunkt/burn/git/blobs{/sha}",
628
+ "git_tags_url": "https://api.github.com/repos/defunkt/burn/git/tags{/sha}",
629
+ "git_refs_url": "https://api.github.com/repos/defunkt/burn/git/refs{/sha}",
630
+ "trees_url": "https://api.github.com/repos/defunkt/burn/git/trees{/sha}",
631
+ "statuses_url": "https://api.github.com/repos/defunkt/burn/statuses/{sha}",
632
+ "languages_url": "https://api.github.com/repos/defunkt/burn/languages",
633
+ "stargazers_url": "https://api.github.com/repos/defunkt/burn/stargazers",
634
+ "contributors_url": "https://api.github.com/repos/defunkt/burn/contributors",
635
+ "subscribers_url": "https://api.github.com/repos/defunkt/burn/subscribers",
636
+ "subscription_url": "https://api.github.com/repos/defunkt/burn/subscription",
637
+ "commits_url": "https://api.github.com/repos/defunkt/burn/commits{/sha}",
638
+ "git_commits_url": "https://api.github.com/repos/defunkt/burn/git/commits{/sha}",
639
+ "comments_url": "https://api.github.com/repos/defunkt/burn/comments{/number}",
640
+ "issue_comment_url": "https://api.github.com/repos/defunkt/burn/issues/comments/{number}",
641
+ "contents_url": "https://api.github.com/repos/defunkt/burn/contents/{+path}",
642
+ "compare_url": "https://api.github.com/repos/defunkt/burn/compare/{base}...{head}",
643
+ "merges_url": "https://api.github.com/repos/defunkt/burn/merges",
644
+ "archive_url": "https://api.github.com/repos/defunkt/burn/{archive_format}{/ref}",
645
+ "downloads_url": "https://api.github.com/repos/defunkt/burn/downloads",
646
+ "issues_url": "https://api.github.com/repos/defunkt/burn/issues{/number}",
647
+ "pulls_url": "https://api.github.com/repos/defunkt/burn/pulls{/number}",
648
+ "milestones_url": "https://api.github.com/repos/defunkt/burn/milestones{/number}",
649
+ "notifications_url": "https://api.github.com/repos/defunkt/burn/notifications{?since,all,participating}",
650
+ "labels_url": "https://api.github.com/repos/defunkt/burn/labels{/name}",
651
+ "created_at": "2009-08-26T01:31:54Z",
652
+ "updated_at": "2013-02-01T16:58:23Z",
653
+ "pushed_at": "2009-08-26T02:13:06Z",
654
+ "git_url": "git://github.com/defunkt/burn.git",
655
+ "ssh_url": "git@github.com:defunkt/burn.git",
656
+ "clone_url": "https://github.com/defunkt/burn.git",
657
+ "svn_url": "https://github.com/defunkt/burn",
658
+ "homepage": "",
659
+ "size": 92,
660
+ "watchers_count": 4,
661
+ "language": null,
662
+ "has_issues": false,
663
+ "has_downloads": false,
664
+ "has_wiki": false,
665
+ "forks_count": 2,
666
+ "mirror_url": null,
667
+ "open_issues_count": 0,
668
+ "forks": 2,
669
+ "open_issues": 0,
670
+ "watchers": 4,
671
+ "master_branch": "master",
672
+ "default_branch": "master"
673
+ },
674
+ {
675
+ "id": 93,
676
+ "name": "cache_fu",
677
+ "full_name": "defunkt/cache_fu",
678
+ "owner": {
679
+ "login": "defunkt",
680
+ "id": 2,
681
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
682
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
683
+ "url": "https://api.github.com/users/defunkt",
684
+ "html_url": "https://github.com/defunkt",
685
+ "followers_url": "https://api.github.com/users/defunkt/followers",
686
+ "following_url": "https://api.github.com/users/defunkt/following",
687
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
688
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
689
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
690
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
691
+ "repos_url": "https://api.github.com/users/defunkt/repos",
692
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
693
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
694
+ "type": "User"
695
+ },
696
+ "private": false,
697
+ "html_url": "https://github.com/defunkt/cache_fu",
698
+ "description": "Ghost from Christmas past. Unmaintained.",
699
+ "fork": false,
700
+ "url": "https://api.github.com/repos/defunkt/cache_fu",
701
+ "forks_url": "https://api.github.com/repos/defunkt/cache_fu/forks",
702
+ "keys_url": "https://api.github.com/repos/defunkt/cache_fu/keys{/key_id}",
703
+ "collaborators_url": "https://api.github.com/repos/defunkt/cache_fu/collaborators{/collaborator}",
704
+ "teams_url": "https://api.github.com/repos/defunkt/cache_fu/teams",
705
+ "hooks_url": "https://api.github.com/repos/defunkt/cache_fu/hooks",
706
+ "issue_events_url": "https://api.github.com/repos/defunkt/cache_fu/issues/events{/number}",
707
+ "events_url": "https://api.github.com/repos/defunkt/cache_fu/events",
708
+ "assignees_url": "https://api.github.com/repos/defunkt/cache_fu/assignees{/user}",
709
+ "branches_url": "https://api.github.com/repos/defunkt/cache_fu/branches{/branch}",
710
+ "tags_url": "https://api.github.com/repos/defunkt/cache_fu/tags{/tag}",
711
+ "blobs_url": "https://api.github.com/repos/defunkt/cache_fu/git/blobs{/sha}",
712
+ "git_tags_url": "https://api.github.com/repos/defunkt/cache_fu/git/tags{/sha}",
713
+ "git_refs_url": "https://api.github.com/repos/defunkt/cache_fu/git/refs{/sha}",
714
+ "trees_url": "https://api.github.com/repos/defunkt/cache_fu/git/trees{/sha}",
715
+ "statuses_url": "https://api.github.com/repos/defunkt/cache_fu/statuses/{sha}",
716
+ "languages_url": "https://api.github.com/repos/defunkt/cache_fu/languages",
717
+ "stargazers_url": "https://api.github.com/repos/defunkt/cache_fu/stargazers",
718
+ "contributors_url": "https://api.github.com/repos/defunkt/cache_fu/contributors",
719
+ "subscribers_url": "https://api.github.com/repos/defunkt/cache_fu/subscribers",
720
+ "subscription_url": "https://api.github.com/repos/defunkt/cache_fu/subscription",
721
+ "commits_url": "https://api.github.com/repos/defunkt/cache_fu/commits{/sha}",
722
+ "git_commits_url": "https://api.github.com/repos/defunkt/cache_fu/git/commits{/sha}",
723
+ "comments_url": "https://api.github.com/repos/defunkt/cache_fu/comments{/number}",
724
+ "issue_comment_url": "https://api.github.com/repos/defunkt/cache_fu/issues/comments/{number}",
725
+ "contents_url": "https://api.github.com/repos/defunkt/cache_fu/contents/{+path}",
726
+ "compare_url": "https://api.github.com/repos/defunkt/cache_fu/compare/{base}...{head}",
727
+ "merges_url": "https://api.github.com/repos/defunkt/cache_fu/merges",
728
+ "archive_url": "https://api.github.com/repos/defunkt/cache_fu/{archive_format}{/ref}",
729
+ "downloads_url": "https://api.github.com/repos/defunkt/cache_fu/downloads",
730
+ "issues_url": "https://api.github.com/repos/defunkt/cache_fu/issues{/number}",
731
+ "pulls_url": "https://api.github.com/repos/defunkt/cache_fu/pulls{/number}",
732
+ "milestones_url": "https://api.github.com/repos/defunkt/cache_fu/milestones{/number}",
733
+ "notifications_url": "https://api.github.com/repos/defunkt/cache_fu/notifications{?since,all,participating}",
734
+ "labels_url": "https://api.github.com/repos/defunkt/cache_fu/labels{/name}",
735
+ "created_at": "2008-01-23T00:28:10Z",
736
+ "updated_at": "2013-02-22T13:05:05Z",
737
+ "pushed_at": "2009-10-04T01:54:43Z",
738
+ "git_url": "git://github.com/defunkt/cache_fu.git",
739
+ "ssh_url": "git@github.com:defunkt/cache_fu.git",
740
+ "clone_url": "https://github.com/defunkt/cache_fu.git",
741
+ "svn_url": "https://github.com/defunkt/cache_fu",
742
+ "homepage": "http://errtheblog.com",
743
+ "size": 92,
744
+ "watchers_count": 265,
745
+ "language": "Ruby",
746
+ "has_issues": true,
747
+ "has_downloads": false,
748
+ "has_wiki": false,
749
+ "forks_count": 67,
750
+ "mirror_url": null,
751
+ "open_issues_count": 6,
752
+ "forks": 67,
753
+ "open_issues": 6,
754
+ "watchers": 265,
755
+ "master_branch": "master",
756
+ "default_branch": "master"
757
+ },
758
+ {
759
+ "id": 3591,
760
+ "name": "cheat",
761
+ "full_name": "defunkt/cheat",
762
+ "owner": {
763
+ "login": "defunkt",
764
+ "id": 2,
765
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
766
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
767
+ "url": "https://api.github.com/users/defunkt",
768
+ "html_url": "https://github.com/defunkt",
769
+ "followers_url": "https://api.github.com/users/defunkt/followers",
770
+ "following_url": "https://api.github.com/users/defunkt/following",
771
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
772
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
773
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
774
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
775
+ "repos_url": "https://api.github.com/users/defunkt/repos",
776
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
777
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
778
+ "type": "User"
779
+ },
780
+ "private": false,
781
+ "html_url": "https://github.com/defunkt/cheat",
782
+ "description": "Cheating is fun!",
783
+ "fork": false,
784
+ "url": "https://api.github.com/repos/defunkt/cheat",
785
+ "forks_url": "https://api.github.com/repos/defunkt/cheat/forks",
786
+ "keys_url": "https://api.github.com/repos/defunkt/cheat/keys{/key_id}",
787
+ "collaborators_url": "https://api.github.com/repos/defunkt/cheat/collaborators{/collaborator}",
788
+ "teams_url": "https://api.github.com/repos/defunkt/cheat/teams",
789
+ "hooks_url": "https://api.github.com/repos/defunkt/cheat/hooks",
790
+ "issue_events_url": "https://api.github.com/repos/defunkt/cheat/issues/events{/number}",
791
+ "events_url": "https://api.github.com/repos/defunkt/cheat/events",
792
+ "assignees_url": "https://api.github.com/repos/defunkt/cheat/assignees{/user}",
793
+ "branches_url": "https://api.github.com/repos/defunkt/cheat/branches{/branch}",
794
+ "tags_url": "https://api.github.com/repos/defunkt/cheat/tags{/tag}",
795
+ "blobs_url": "https://api.github.com/repos/defunkt/cheat/git/blobs{/sha}",
796
+ "git_tags_url": "https://api.github.com/repos/defunkt/cheat/git/tags{/sha}",
797
+ "git_refs_url": "https://api.github.com/repos/defunkt/cheat/git/refs{/sha}",
798
+ "trees_url": "https://api.github.com/repos/defunkt/cheat/git/trees{/sha}",
799
+ "statuses_url": "https://api.github.com/repos/defunkt/cheat/statuses/{sha}",
800
+ "languages_url": "https://api.github.com/repos/defunkt/cheat/languages",
801
+ "stargazers_url": "https://api.github.com/repos/defunkt/cheat/stargazers",
802
+ "contributors_url": "https://api.github.com/repos/defunkt/cheat/contributors",
803
+ "subscribers_url": "https://api.github.com/repos/defunkt/cheat/subscribers",
804
+ "subscription_url": "https://api.github.com/repos/defunkt/cheat/subscription",
805
+ "commits_url": "https://api.github.com/repos/defunkt/cheat/commits{/sha}",
806
+ "git_commits_url": "https://api.github.com/repos/defunkt/cheat/git/commits{/sha}",
807
+ "comments_url": "https://api.github.com/repos/defunkt/cheat/comments{/number}",
808
+ "issue_comment_url": "https://api.github.com/repos/defunkt/cheat/issues/comments/{number}",
809
+ "contents_url": "https://api.github.com/repos/defunkt/cheat/contents/{+path}",
810
+ "compare_url": "https://api.github.com/repos/defunkt/cheat/compare/{base}...{head}",
811
+ "merges_url": "https://api.github.com/repos/defunkt/cheat/merges",
812
+ "archive_url": "https://api.github.com/repos/defunkt/cheat/{archive_format}{/ref}",
813
+ "downloads_url": "https://api.github.com/repos/defunkt/cheat/downloads",
814
+ "issues_url": "https://api.github.com/repos/defunkt/cheat/issues{/number}",
815
+ "pulls_url": "https://api.github.com/repos/defunkt/cheat/pulls{/number}",
816
+ "milestones_url": "https://api.github.com/repos/defunkt/cheat/milestones{/number}",
817
+ "notifications_url": "https://api.github.com/repos/defunkt/cheat/notifications{?since,all,participating}",
818
+ "labels_url": "https://api.github.com/repos/defunkt/cheat/labels{/name}",
819
+ "created_at": "2008-03-12T06:09:09Z",
820
+ "updated_at": "2013-03-14T20:30:36Z",
821
+ "pushed_at": "2013-02-14T17:03:31Z",
822
+ "git_url": "git://github.com/defunkt/cheat.git",
823
+ "ssh_url": "git@github.com:defunkt/cheat.git",
824
+ "clone_url": "https://github.com/defunkt/cheat.git",
825
+ "svn_url": "https://github.com/defunkt/cheat",
826
+ "homepage": "http://cheat.errtheblog.com",
827
+ "size": 184,
828
+ "watchers_count": 172,
829
+ "language": "Ruby",
830
+ "has_issues": true,
831
+ "has_downloads": false,
832
+ "has_wiki": false,
833
+ "forks_count": 41,
834
+ "mirror_url": null,
835
+ "open_issues_count": 1,
836
+ "forks": 41,
837
+ "open_issues": 1,
838
+ "watchers": 172,
839
+ "master_branch": "master",
840
+ "default_branch": "master"
841
+ },
842
+ {
843
+ "id": 45193,
844
+ "name": "cheat.el",
845
+ "full_name": "defunkt/cheat.el",
846
+ "owner": {
847
+ "login": "defunkt",
848
+ "id": 2,
849
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
850
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
851
+ "url": "https://api.github.com/users/defunkt",
852
+ "html_url": "https://github.com/defunkt",
853
+ "followers_url": "https://api.github.com/users/defunkt/followers",
854
+ "following_url": "https://api.github.com/users/defunkt/following",
855
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
856
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
857
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
858
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
859
+ "repos_url": "https://api.github.com/users/defunkt/repos",
860
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
861
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
862
+ "type": "User"
863
+ },
864
+ "private": false,
865
+ "html_url": "https://github.com/defunkt/cheat.el",
866
+ "description": "Cheat Emacs mode",
867
+ "fork": false,
868
+ "url": "https://api.github.com/repos/defunkt/cheat.el",
869
+ "forks_url": "https://api.github.com/repos/defunkt/cheat.el/forks",
870
+ "keys_url": "https://api.github.com/repos/defunkt/cheat.el/keys{/key_id}",
871
+ "collaborators_url": "https://api.github.com/repos/defunkt/cheat.el/collaborators{/collaborator}",
872
+ "teams_url": "https://api.github.com/repos/defunkt/cheat.el/teams",
873
+ "hooks_url": "https://api.github.com/repos/defunkt/cheat.el/hooks",
874
+ "issue_events_url": "https://api.github.com/repos/defunkt/cheat.el/issues/events{/number}",
875
+ "events_url": "https://api.github.com/repos/defunkt/cheat.el/events",
876
+ "assignees_url": "https://api.github.com/repos/defunkt/cheat.el/assignees{/user}",
877
+ "branches_url": "https://api.github.com/repos/defunkt/cheat.el/branches{/branch}",
878
+ "tags_url": "https://api.github.com/repos/defunkt/cheat.el/tags{/tag}",
879
+ "blobs_url": "https://api.github.com/repos/defunkt/cheat.el/git/blobs{/sha}",
880
+ "git_tags_url": "https://api.github.com/repos/defunkt/cheat.el/git/tags{/sha}",
881
+ "git_refs_url": "https://api.github.com/repos/defunkt/cheat.el/git/refs{/sha}",
882
+ "trees_url": "https://api.github.com/repos/defunkt/cheat.el/git/trees{/sha}",
883
+ "statuses_url": "https://api.github.com/repos/defunkt/cheat.el/statuses/{sha}",
884
+ "languages_url": "https://api.github.com/repos/defunkt/cheat.el/languages",
885
+ "stargazers_url": "https://api.github.com/repos/defunkt/cheat.el/stargazers",
886
+ "contributors_url": "https://api.github.com/repos/defunkt/cheat.el/contributors",
887
+ "subscribers_url": "https://api.github.com/repos/defunkt/cheat.el/subscribers",
888
+ "subscription_url": "https://api.github.com/repos/defunkt/cheat.el/subscription",
889
+ "commits_url": "https://api.github.com/repos/defunkt/cheat.el/commits{/sha}",
890
+ "git_commits_url": "https://api.github.com/repos/defunkt/cheat.el/git/commits{/sha}",
891
+ "comments_url": "https://api.github.com/repos/defunkt/cheat.el/comments{/number}",
892
+ "issue_comment_url": "https://api.github.com/repos/defunkt/cheat.el/issues/comments/{number}",
893
+ "contents_url": "https://api.github.com/repos/defunkt/cheat.el/contents/{+path}",
894
+ "compare_url": "https://api.github.com/repos/defunkt/cheat.el/compare/{base}...{head}",
895
+ "merges_url": "https://api.github.com/repos/defunkt/cheat.el/merges",
896
+ "archive_url": "https://api.github.com/repos/defunkt/cheat.el/{archive_format}{/ref}",
897
+ "downloads_url": "https://api.github.com/repos/defunkt/cheat.el/downloads",
898
+ "issues_url": "https://api.github.com/repos/defunkt/cheat.el/issues{/number}",
899
+ "pulls_url": "https://api.github.com/repos/defunkt/cheat.el/pulls{/number}",
900
+ "milestones_url": "https://api.github.com/repos/defunkt/cheat.el/milestones{/number}",
901
+ "notifications_url": "https://api.github.com/repos/defunkt/cheat.el/notifications{?since,all,participating}",
902
+ "labels_url": "https://api.github.com/repos/defunkt/cheat.el/labels{/name}",
903
+ "created_at": "2008-08-23T06:01:37Z",
904
+ "updated_at": "2013-02-01T16:58:19Z",
905
+ "pushed_at": "2008-12-03T23:55:16Z",
906
+ "git_url": "git://github.com/defunkt/cheat.el.git",
907
+ "ssh_url": "git@github.com:defunkt/cheat.el.git",
908
+ "clone_url": "https://github.com/defunkt/cheat.el.git",
909
+ "svn_url": "https://github.com/defunkt/cheat.el",
910
+ "homepage": "",
911
+ "size": 124,
912
+ "watchers_count": 11,
913
+ "language": "Emacs Lisp",
914
+ "has_issues": true,
915
+ "has_downloads": true,
916
+ "has_wiki": true,
917
+ "forks_count": 3,
918
+ "mirror_url": null,
919
+ "open_issues_count": 0,
920
+ "forks": 3,
921
+ "open_issues": 0,
922
+ "watchers": 11,
923
+ "master_branch": "master",
924
+ "default_branch": "master"
925
+ },
926
+ {
927
+ "id": 12527,
928
+ "name": "choice",
929
+ "full_name": "defunkt/choice",
930
+ "owner": {
931
+ "login": "defunkt",
932
+ "id": 2,
933
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
934
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
935
+ "url": "https://api.github.com/users/defunkt",
936
+ "html_url": "https://github.com/defunkt",
937
+ "followers_url": "https://api.github.com/users/defunkt/followers",
938
+ "following_url": "https://api.github.com/users/defunkt/following",
939
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
940
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
941
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
942
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
943
+ "repos_url": "https://api.github.com/users/defunkt/repos",
944
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
945
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
946
+ "type": "User"
947
+ },
948
+ "private": false,
949
+ "html_url": "https://github.com/defunkt/choice",
950
+ "description": "Choice is a gem for defining and parsing command line options with a friendly DSL.",
951
+ "fork": false,
952
+ "url": "https://api.github.com/repos/defunkt/choice",
953
+ "forks_url": "https://api.github.com/repos/defunkt/choice/forks",
954
+ "keys_url": "https://api.github.com/repos/defunkt/choice/keys{/key_id}",
955
+ "collaborators_url": "https://api.github.com/repos/defunkt/choice/collaborators{/collaborator}",
956
+ "teams_url": "https://api.github.com/repos/defunkt/choice/teams",
957
+ "hooks_url": "https://api.github.com/repos/defunkt/choice/hooks",
958
+ "issue_events_url": "https://api.github.com/repos/defunkt/choice/issues/events{/number}",
959
+ "events_url": "https://api.github.com/repos/defunkt/choice/events",
960
+ "assignees_url": "https://api.github.com/repos/defunkt/choice/assignees{/user}",
961
+ "branches_url": "https://api.github.com/repos/defunkt/choice/branches{/branch}",
962
+ "tags_url": "https://api.github.com/repos/defunkt/choice/tags{/tag}",
963
+ "blobs_url": "https://api.github.com/repos/defunkt/choice/git/blobs{/sha}",
964
+ "git_tags_url": "https://api.github.com/repos/defunkt/choice/git/tags{/sha}",
965
+ "git_refs_url": "https://api.github.com/repos/defunkt/choice/git/refs{/sha}",
966
+ "trees_url": "https://api.github.com/repos/defunkt/choice/git/trees{/sha}",
967
+ "statuses_url": "https://api.github.com/repos/defunkt/choice/statuses/{sha}",
968
+ "languages_url": "https://api.github.com/repos/defunkt/choice/languages",
969
+ "stargazers_url": "https://api.github.com/repos/defunkt/choice/stargazers",
970
+ "contributors_url": "https://api.github.com/repos/defunkt/choice/contributors",
971
+ "subscribers_url": "https://api.github.com/repos/defunkt/choice/subscribers",
972
+ "subscription_url": "https://api.github.com/repos/defunkt/choice/subscription",
973
+ "commits_url": "https://api.github.com/repos/defunkt/choice/commits{/sha}",
974
+ "git_commits_url": "https://api.github.com/repos/defunkt/choice/git/commits{/sha}",
975
+ "comments_url": "https://api.github.com/repos/defunkt/choice/comments{/number}",
976
+ "issue_comment_url": "https://api.github.com/repos/defunkt/choice/issues/comments/{number}",
977
+ "contents_url": "https://api.github.com/repos/defunkt/choice/contents/{+path}",
978
+ "compare_url": "https://api.github.com/repos/defunkt/choice/compare/{base}...{head}",
979
+ "merges_url": "https://api.github.com/repos/defunkt/choice/merges",
980
+ "archive_url": "https://api.github.com/repos/defunkt/choice/{archive_format}{/ref}",
981
+ "downloads_url": "https://api.github.com/repos/defunkt/choice/downloads",
982
+ "issues_url": "https://api.github.com/repos/defunkt/choice/issues{/number}",
983
+ "pulls_url": "https://api.github.com/repos/defunkt/choice/pulls{/number}",
984
+ "milestones_url": "https://api.github.com/repos/defunkt/choice/milestones{/number}",
985
+ "notifications_url": "https://api.github.com/repos/defunkt/choice/notifications{?since,all,participating}",
986
+ "labels_url": "https://api.github.com/repos/defunkt/choice/labels{/name}",
987
+ "created_at": "2008-04-25T18:30:30Z",
988
+ "updated_at": "2013-02-17T04:52:04Z",
989
+ "pushed_at": "2012-03-26T21:09:05Z",
990
+ "git_url": "git://github.com/defunkt/choice.git",
991
+ "ssh_url": "git@github.com:defunkt/choice.git",
992
+ "clone_url": "https://github.com/defunkt/choice.git",
993
+ "svn_url": "https://github.com/defunkt/choice",
994
+ "homepage": "",
995
+ "size": 124,
996
+ "watchers_count": 125,
997
+ "language": "Ruby",
998
+ "has_issues": false,
999
+ "has_downloads": false,
1000
+ "has_wiki": false,
1001
+ "forks_count": 17,
1002
+ "mirror_url": null,
1003
+ "open_issues_count": 1,
1004
+ "forks": 17,
1005
+ "open_issues": 1,
1006
+ "watchers": 125,
1007
+ "master_branch": "master",
1008
+ "default_branch": "master"
1009
+ },
1010
+ {
1011
+ "id": 270226,
1012
+ "name": "cijoe",
1013
+ "full_name": "defunkt/cijoe",
1014
+ "owner": {
1015
+ "login": "defunkt",
1016
+ "id": 2,
1017
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
1018
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
1019
+ "url": "https://api.github.com/users/defunkt",
1020
+ "html_url": "https://github.com/defunkt",
1021
+ "followers_url": "https://api.github.com/users/defunkt/followers",
1022
+ "following_url": "https://api.github.com/users/defunkt/following",
1023
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
1024
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
1025
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
1026
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
1027
+ "repos_url": "https://api.github.com/users/defunkt/repos",
1028
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
1029
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
1030
+ "type": "User"
1031
+ },
1032
+ "private": false,
1033
+ "html_url": "https://github.com/defunkt/cijoe",
1034
+ "description": "CI Joe is a fun Continuous Integration server.",
1035
+ "fork": false,
1036
+ "url": "https://api.github.com/repos/defunkt/cijoe",
1037
+ "forks_url": "https://api.github.com/repos/defunkt/cijoe/forks",
1038
+ "keys_url": "https://api.github.com/repos/defunkt/cijoe/keys{/key_id}",
1039
+ "collaborators_url": "https://api.github.com/repos/defunkt/cijoe/collaborators{/collaborator}",
1040
+ "teams_url": "https://api.github.com/repos/defunkt/cijoe/teams",
1041
+ "hooks_url": "https://api.github.com/repos/defunkt/cijoe/hooks",
1042
+ "issue_events_url": "https://api.github.com/repos/defunkt/cijoe/issues/events{/number}",
1043
+ "events_url": "https://api.github.com/repos/defunkt/cijoe/events",
1044
+ "assignees_url": "https://api.github.com/repos/defunkt/cijoe/assignees{/user}",
1045
+ "branches_url": "https://api.github.com/repos/defunkt/cijoe/branches{/branch}",
1046
+ "tags_url": "https://api.github.com/repos/defunkt/cijoe/tags{/tag}",
1047
+ "blobs_url": "https://api.github.com/repos/defunkt/cijoe/git/blobs{/sha}",
1048
+ "git_tags_url": "https://api.github.com/repos/defunkt/cijoe/git/tags{/sha}",
1049
+ "git_refs_url": "https://api.github.com/repos/defunkt/cijoe/git/refs{/sha}",
1050
+ "trees_url": "https://api.github.com/repos/defunkt/cijoe/git/trees{/sha}",
1051
+ "statuses_url": "https://api.github.com/repos/defunkt/cijoe/statuses/{sha}",
1052
+ "languages_url": "https://api.github.com/repos/defunkt/cijoe/languages",
1053
+ "stargazers_url": "https://api.github.com/repos/defunkt/cijoe/stargazers",
1054
+ "contributors_url": "https://api.github.com/repos/defunkt/cijoe/contributors",
1055
+ "subscribers_url": "https://api.github.com/repos/defunkt/cijoe/subscribers",
1056
+ "subscription_url": "https://api.github.com/repos/defunkt/cijoe/subscription",
1057
+ "commits_url": "https://api.github.com/repos/defunkt/cijoe/commits{/sha}",
1058
+ "git_commits_url": "https://api.github.com/repos/defunkt/cijoe/git/commits{/sha}",
1059
+ "comments_url": "https://api.github.com/repos/defunkt/cijoe/comments{/number}",
1060
+ "issue_comment_url": "https://api.github.com/repos/defunkt/cijoe/issues/comments/{number}",
1061
+ "contents_url": "https://api.github.com/repos/defunkt/cijoe/contents/{+path}",
1062
+ "compare_url": "https://api.github.com/repos/defunkt/cijoe/compare/{base}...{head}",
1063
+ "merges_url": "https://api.github.com/repos/defunkt/cijoe/merges",
1064
+ "archive_url": "https://api.github.com/repos/defunkt/cijoe/{archive_format}{/ref}",
1065
+ "downloads_url": "https://api.github.com/repos/defunkt/cijoe/downloads",
1066
+ "issues_url": "https://api.github.com/repos/defunkt/cijoe/issues{/number}",
1067
+ "pulls_url": "https://api.github.com/repos/defunkt/cijoe/pulls{/number}",
1068
+ "milestones_url": "https://api.github.com/repos/defunkt/cijoe/milestones{/number}",
1069
+ "notifications_url": "https://api.github.com/repos/defunkt/cijoe/notifications{?since,all,participating}",
1070
+ "labels_url": "https://api.github.com/repos/defunkt/cijoe/labels{/name}",
1071
+ "created_at": "2009-08-06T00:20:39Z",
1072
+ "updated_at": "2013-03-15T03:23:13Z",
1073
+ "pushed_at": "2011-10-01T22:56:55Z",
1074
+ "git_url": "git://github.com/defunkt/cijoe.git",
1075
+ "ssh_url": "git@github.com:defunkt/cijoe.git",
1076
+ "clone_url": "https://github.com/defunkt/cijoe.git",
1077
+ "svn_url": "https://github.com/defunkt/cijoe",
1078
+ "homepage": "",
1079
+ "size": 148,
1080
+ "watchers_count": 991,
1081
+ "language": "Ruby",
1082
+ "has_issues": true,
1083
+ "has_downloads": false,
1084
+ "has_wiki": false,
1085
+ "forks_count": 141,
1086
+ "mirror_url": null,
1087
+ "open_issues_count": 22,
1088
+ "forks": 141,
1089
+ "open_issues": 22,
1090
+ "watchers": 991,
1091
+ "master_branch": "master",
1092
+ "default_branch": "master"
1093
+ },
1094
+ {
1095
+ "id": 550681,
1096
+ "name": "coffee-mode",
1097
+ "full_name": "defunkt/coffee-mode",
1098
+ "owner": {
1099
+ "login": "defunkt",
1100
+ "id": 2,
1101
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
1102
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
1103
+ "url": "https://api.github.com/users/defunkt",
1104
+ "html_url": "https://github.com/defunkt",
1105
+ "followers_url": "https://api.github.com/users/defunkt/followers",
1106
+ "following_url": "https://api.github.com/users/defunkt/following",
1107
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
1108
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
1109
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
1110
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
1111
+ "repos_url": "https://api.github.com/users/defunkt/repos",
1112
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
1113
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
1114
+ "type": "User"
1115
+ },
1116
+ "private": false,
1117
+ "html_url": "https://github.com/defunkt/coffee-mode",
1118
+ "description": "Emacs Major Mode for CoffeeScript",
1119
+ "fork": false,
1120
+ "url": "https://api.github.com/repos/defunkt/coffee-mode",
1121
+ "forks_url": "https://api.github.com/repos/defunkt/coffee-mode/forks",
1122
+ "keys_url": "https://api.github.com/repos/defunkt/coffee-mode/keys{/key_id}",
1123
+ "collaborators_url": "https://api.github.com/repos/defunkt/coffee-mode/collaborators{/collaborator}",
1124
+ "teams_url": "https://api.github.com/repos/defunkt/coffee-mode/teams",
1125
+ "hooks_url": "https://api.github.com/repos/defunkt/coffee-mode/hooks",
1126
+ "issue_events_url": "https://api.github.com/repos/defunkt/coffee-mode/issues/events{/number}",
1127
+ "events_url": "https://api.github.com/repos/defunkt/coffee-mode/events",
1128
+ "assignees_url": "https://api.github.com/repos/defunkt/coffee-mode/assignees{/user}",
1129
+ "branches_url": "https://api.github.com/repos/defunkt/coffee-mode/branches{/branch}",
1130
+ "tags_url": "https://api.github.com/repos/defunkt/coffee-mode/tags{/tag}",
1131
+ "blobs_url": "https://api.github.com/repos/defunkt/coffee-mode/git/blobs{/sha}",
1132
+ "git_tags_url": "https://api.github.com/repos/defunkt/coffee-mode/git/tags{/sha}",
1133
+ "git_refs_url": "https://api.github.com/repos/defunkt/coffee-mode/git/refs{/sha}",
1134
+ "trees_url": "https://api.github.com/repos/defunkt/coffee-mode/git/trees{/sha}",
1135
+ "statuses_url": "https://api.github.com/repos/defunkt/coffee-mode/statuses/{sha}",
1136
+ "languages_url": "https://api.github.com/repos/defunkt/coffee-mode/languages",
1137
+ "stargazers_url": "https://api.github.com/repos/defunkt/coffee-mode/stargazers",
1138
+ "contributors_url": "https://api.github.com/repos/defunkt/coffee-mode/contributors",
1139
+ "subscribers_url": "https://api.github.com/repos/defunkt/coffee-mode/subscribers",
1140
+ "subscription_url": "https://api.github.com/repos/defunkt/coffee-mode/subscription",
1141
+ "commits_url": "https://api.github.com/repos/defunkt/coffee-mode/commits{/sha}",
1142
+ "git_commits_url": "https://api.github.com/repos/defunkt/coffee-mode/git/commits{/sha}",
1143
+ "comments_url": "https://api.github.com/repos/defunkt/coffee-mode/comments{/number}",
1144
+ "issue_comment_url": "https://api.github.com/repos/defunkt/coffee-mode/issues/comments/{number}",
1145
+ "contents_url": "https://api.github.com/repos/defunkt/coffee-mode/contents/{+path}",
1146
+ "compare_url": "https://api.github.com/repos/defunkt/coffee-mode/compare/{base}...{head}",
1147
+ "merges_url": "https://api.github.com/repos/defunkt/coffee-mode/merges",
1148
+ "archive_url": "https://api.github.com/repos/defunkt/coffee-mode/{archive_format}{/ref}",
1149
+ "downloads_url": "https://api.github.com/repos/defunkt/coffee-mode/downloads",
1150
+ "issues_url": "https://api.github.com/repos/defunkt/coffee-mode/issues{/number}",
1151
+ "pulls_url": "https://api.github.com/repos/defunkt/coffee-mode/pulls{/number}",
1152
+ "milestones_url": "https://api.github.com/repos/defunkt/coffee-mode/milestones{/number}",
1153
+ "notifications_url": "https://api.github.com/repos/defunkt/coffee-mode/notifications{?since,all,participating}",
1154
+ "labels_url": "https://api.github.com/repos/defunkt/coffee-mode/labels{/name}",
1155
+ "created_at": "2010-03-07T08:30:40Z",
1156
+ "updated_at": "2013-03-12T02:23:49Z",
1157
+ "pushed_at": "2013-03-11T06:33:45Z",
1158
+ "git_url": "git://github.com/defunkt/coffee-mode.git",
1159
+ "ssh_url": "git@github.com:defunkt/coffee-mode.git",
1160
+ "clone_url": "https://github.com/defunkt/coffee-mode.git",
1161
+ "svn_url": "https://github.com/defunkt/coffee-mode",
1162
+ "homepage": "http://ozmm.org/posts/coffee_mode.html",
1163
+ "size": 180,
1164
+ "watchers_count": 394,
1165
+ "language": "Emacs Lisp",
1166
+ "has_issues": true,
1167
+ "has_downloads": true,
1168
+ "has_wiki": false,
1169
+ "forks_count": 104,
1170
+ "mirror_url": null,
1171
+ "open_issues_count": 29,
1172
+ "forks": 104,
1173
+ "open_issues": 29,
1174
+ "watchers": 394,
1175
+ "master_branch": "master",
1176
+ "default_branch": "master"
1177
+ },
1178
+ {
1179
+ "id": 388149,
1180
+ "name": "colored",
1181
+ "full_name": "defunkt/colored",
1182
+ "owner": {
1183
+ "login": "defunkt",
1184
+ "id": 2,
1185
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
1186
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
1187
+ "url": "https://api.github.com/users/defunkt",
1188
+ "html_url": "https://github.com/defunkt",
1189
+ "followers_url": "https://api.github.com/users/defunkt/followers",
1190
+ "following_url": "https://api.github.com/users/defunkt/following",
1191
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
1192
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
1193
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
1194
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
1195
+ "repos_url": "https://api.github.com/users/defunkt/repos",
1196
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
1197
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
1198
+ "type": "User"
1199
+ },
1200
+ "private": false,
1201
+ "html_url": "https://github.com/defunkt/colored",
1202
+ "description": "Colors in your terminal.",
1203
+ "fork": false,
1204
+ "url": "https://api.github.com/repos/defunkt/colored",
1205
+ "forks_url": "https://api.github.com/repos/defunkt/colored/forks",
1206
+ "keys_url": "https://api.github.com/repos/defunkt/colored/keys{/key_id}",
1207
+ "collaborators_url": "https://api.github.com/repos/defunkt/colored/collaborators{/collaborator}",
1208
+ "teams_url": "https://api.github.com/repos/defunkt/colored/teams",
1209
+ "hooks_url": "https://api.github.com/repos/defunkt/colored/hooks",
1210
+ "issue_events_url": "https://api.github.com/repos/defunkt/colored/issues/events{/number}",
1211
+ "events_url": "https://api.github.com/repos/defunkt/colored/events",
1212
+ "assignees_url": "https://api.github.com/repos/defunkt/colored/assignees{/user}",
1213
+ "branches_url": "https://api.github.com/repos/defunkt/colored/branches{/branch}",
1214
+ "tags_url": "https://api.github.com/repos/defunkt/colored/tags{/tag}",
1215
+ "blobs_url": "https://api.github.com/repos/defunkt/colored/git/blobs{/sha}",
1216
+ "git_tags_url": "https://api.github.com/repos/defunkt/colored/git/tags{/sha}",
1217
+ "git_refs_url": "https://api.github.com/repos/defunkt/colored/git/refs{/sha}",
1218
+ "trees_url": "https://api.github.com/repos/defunkt/colored/git/trees{/sha}",
1219
+ "statuses_url": "https://api.github.com/repos/defunkt/colored/statuses/{sha}",
1220
+ "languages_url": "https://api.github.com/repos/defunkt/colored/languages",
1221
+ "stargazers_url": "https://api.github.com/repos/defunkt/colored/stargazers",
1222
+ "contributors_url": "https://api.github.com/repos/defunkt/colored/contributors",
1223
+ "subscribers_url": "https://api.github.com/repos/defunkt/colored/subscribers",
1224
+ "subscription_url": "https://api.github.com/repos/defunkt/colored/subscription",
1225
+ "commits_url": "https://api.github.com/repos/defunkt/colored/commits{/sha}",
1226
+ "git_commits_url": "https://api.github.com/repos/defunkt/colored/git/commits{/sha}",
1227
+ "comments_url": "https://api.github.com/repos/defunkt/colored/comments{/number}",
1228
+ "issue_comment_url": "https://api.github.com/repos/defunkt/colored/issues/comments/{number}",
1229
+ "contents_url": "https://api.github.com/repos/defunkt/colored/contents/{+path}",
1230
+ "compare_url": "https://api.github.com/repos/defunkt/colored/compare/{base}...{head}",
1231
+ "merges_url": "https://api.github.com/repos/defunkt/colored/merges",
1232
+ "archive_url": "https://api.github.com/repos/defunkt/colored/{archive_format}{/ref}",
1233
+ "downloads_url": "https://api.github.com/repos/defunkt/colored/downloads",
1234
+ "issues_url": "https://api.github.com/repos/defunkt/colored/issues{/number}",
1235
+ "pulls_url": "https://api.github.com/repos/defunkt/colored/pulls{/number}",
1236
+ "milestones_url": "https://api.github.com/repos/defunkt/colored/milestones{/number}",
1237
+ "notifications_url": "https://api.github.com/repos/defunkt/colored/notifications{?since,all,participating}",
1238
+ "labels_url": "https://api.github.com/repos/defunkt/colored/labels{/name}",
1239
+ "created_at": "2009-11-28T06:16:20Z",
1240
+ "updated_at": "2013-03-17T16:10:27Z",
1241
+ "pushed_at": "2010-02-20T10:06:17Z",
1242
+ "git_url": "git://github.com/defunkt/colored.git",
1243
+ "ssh_url": "git@github.com:defunkt/colored.git",
1244
+ "clone_url": "https://github.com/defunkt/colored.git",
1245
+ "svn_url": "https://github.com/defunkt/colored",
1246
+ "homepage": "",
1247
+ "size": 200,
1248
+ "watchers_count": 145,
1249
+ "language": "Ruby",
1250
+ "has_issues": false,
1251
+ "has_downloads": false,
1252
+ "has_wiki": false,
1253
+ "forks_count": 15,
1254
+ "mirror_url": null,
1255
+ "open_issues_count": 2,
1256
+ "forks": 15,
1257
+ "open_issues": 2,
1258
+ "watchers": 145,
1259
+ "master_branch": "master",
1260
+ "default_branch": "master"
1261
+ },
1262
+ {
1263
+ "id": 12220,
1264
+ "name": "currency_converter",
1265
+ "full_name": "defunkt/currency_converter",
1266
+ "owner": {
1267
+ "login": "defunkt",
1268
+ "id": 2,
1269
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
1270
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
1271
+ "url": "https://api.github.com/users/defunkt",
1272
+ "html_url": "https://github.com/defunkt",
1273
+ "followers_url": "https://api.github.com/users/defunkt/followers",
1274
+ "following_url": "https://api.github.com/users/defunkt/following",
1275
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
1276
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
1277
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
1278
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
1279
+ "repos_url": "https://api.github.com/users/defunkt/repos",
1280
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
1281
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
1282
+ "type": "User"
1283
+ },
1284
+ "private": false,
1285
+ "html_url": "https://github.com/defunkt/currency_converter",
1286
+ "description": "",
1287
+ "fork": false,
1288
+ "url": "https://api.github.com/repos/defunkt/currency_converter",
1289
+ "forks_url": "https://api.github.com/repos/defunkt/currency_converter/forks",
1290
+ "keys_url": "https://api.github.com/repos/defunkt/currency_converter/keys{/key_id}",
1291
+ "collaborators_url": "https://api.github.com/repos/defunkt/currency_converter/collaborators{/collaborator}",
1292
+ "teams_url": "https://api.github.com/repos/defunkt/currency_converter/teams",
1293
+ "hooks_url": "https://api.github.com/repos/defunkt/currency_converter/hooks",
1294
+ "issue_events_url": "https://api.github.com/repos/defunkt/currency_converter/issues/events{/number}",
1295
+ "events_url": "https://api.github.com/repos/defunkt/currency_converter/events",
1296
+ "assignees_url": "https://api.github.com/repos/defunkt/currency_converter/assignees{/user}",
1297
+ "branches_url": "https://api.github.com/repos/defunkt/currency_converter/branches{/branch}",
1298
+ "tags_url": "https://api.github.com/repos/defunkt/currency_converter/tags{/tag}",
1299
+ "blobs_url": "https://api.github.com/repos/defunkt/currency_converter/git/blobs{/sha}",
1300
+ "git_tags_url": "https://api.github.com/repos/defunkt/currency_converter/git/tags{/sha}",
1301
+ "git_refs_url": "https://api.github.com/repos/defunkt/currency_converter/git/refs{/sha}",
1302
+ "trees_url": "https://api.github.com/repos/defunkt/currency_converter/git/trees{/sha}",
1303
+ "statuses_url": "https://api.github.com/repos/defunkt/currency_converter/statuses/{sha}",
1304
+ "languages_url": "https://api.github.com/repos/defunkt/currency_converter/languages",
1305
+ "stargazers_url": "https://api.github.com/repos/defunkt/currency_converter/stargazers",
1306
+ "contributors_url": "https://api.github.com/repos/defunkt/currency_converter/contributors",
1307
+ "subscribers_url": "https://api.github.com/repos/defunkt/currency_converter/subscribers",
1308
+ "subscription_url": "https://api.github.com/repos/defunkt/currency_converter/subscription",
1309
+ "commits_url": "https://api.github.com/repos/defunkt/currency_converter/commits{/sha}",
1310
+ "git_commits_url": "https://api.github.com/repos/defunkt/currency_converter/git/commits{/sha}",
1311
+ "comments_url": "https://api.github.com/repos/defunkt/currency_converter/comments{/number}",
1312
+ "issue_comment_url": "https://api.github.com/repos/defunkt/currency_converter/issues/comments/{number}",
1313
+ "contents_url": "https://api.github.com/repos/defunkt/currency_converter/contents/{+path}",
1314
+ "compare_url": "https://api.github.com/repos/defunkt/currency_converter/compare/{base}...{head}",
1315
+ "merges_url": "https://api.github.com/repos/defunkt/currency_converter/merges",
1316
+ "archive_url": "https://api.github.com/repos/defunkt/currency_converter/{archive_format}{/ref}",
1317
+ "downloads_url": "https://api.github.com/repos/defunkt/currency_converter/downloads",
1318
+ "issues_url": "https://api.github.com/repos/defunkt/currency_converter/issues{/number}",
1319
+ "pulls_url": "https://api.github.com/repos/defunkt/currency_converter/pulls{/number}",
1320
+ "milestones_url": "https://api.github.com/repos/defunkt/currency_converter/milestones{/number}",
1321
+ "notifications_url": "https://api.github.com/repos/defunkt/currency_converter/notifications{?since,all,participating}",
1322
+ "labels_url": "https://api.github.com/repos/defunkt/currency_converter/labels{/name}",
1323
+ "created_at": "2008-04-24T09:34:31Z",
1324
+ "updated_at": "2013-02-01T16:58:18Z",
1325
+ "pushed_at": "2008-04-24T09:36:14Z",
1326
+ "git_url": "git://github.com/defunkt/currency_converter.git",
1327
+ "ssh_url": "git@github.com:defunkt/currency_converter.git",
1328
+ "clone_url": "https://github.com/defunkt/currency_converter.git",
1329
+ "svn_url": "https://github.com/defunkt/currency_converter",
1330
+ "homepage": "",
1331
+ "size": 80,
1332
+ "watchers_count": 4,
1333
+ "language": "Objective-C",
1334
+ "has_issues": true,
1335
+ "has_downloads": true,
1336
+ "has_wiki": true,
1337
+ "forks_count": 2,
1338
+ "mirror_url": null,
1339
+ "open_issues_count": 0,
1340
+ "forks": 2,
1341
+ "open_issues": 0,
1342
+ "watchers": 4,
1343
+ "master_branch": "master",
1344
+ "default_branch": "master"
1345
+ },
1346
+ {
1347
+ "id": 91988,
1348
+ "name": "defunkt.github.com",
1349
+ "full_name": "defunkt/defunkt.github.com",
1350
+ "owner": {
1351
+ "login": "defunkt",
1352
+ "id": 2,
1353
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
1354
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
1355
+ "url": "https://api.github.com/users/defunkt",
1356
+ "html_url": "https://github.com/defunkt",
1357
+ "followers_url": "https://api.github.com/users/defunkt/followers",
1358
+ "following_url": "https://api.github.com/users/defunkt/following",
1359
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
1360
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
1361
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
1362
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
1363
+ "repos_url": "https://api.github.com/users/defunkt/repos",
1364
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
1365
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
1366
+ "type": "User"
1367
+ },
1368
+ "private": false,
1369
+ "html_url": "https://github.com/defunkt/defunkt.github.com",
1370
+ "description": "My GitHub Page",
1371
+ "fork": false,
1372
+ "url": "https://api.github.com/repos/defunkt/defunkt.github.com",
1373
+ "forks_url": "https://api.github.com/repos/defunkt/defunkt.github.com/forks",
1374
+ "keys_url": "https://api.github.com/repos/defunkt/defunkt.github.com/keys{/key_id}",
1375
+ "collaborators_url": "https://api.github.com/repos/defunkt/defunkt.github.com/collaborators{/collaborator}",
1376
+ "teams_url": "https://api.github.com/repos/defunkt/defunkt.github.com/teams",
1377
+ "hooks_url": "https://api.github.com/repos/defunkt/defunkt.github.com/hooks",
1378
+ "issue_events_url": "https://api.github.com/repos/defunkt/defunkt.github.com/issues/events{/number}",
1379
+ "events_url": "https://api.github.com/repos/defunkt/defunkt.github.com/events",
1380
+ "assignees_url": "https://api.github.com/repos/defunkt/defunkt.github.com/assignees{/user}",
1381
+ "branches_url": "https://api.github.com/repos/defunkt/defunkt.github.com/branches{/branch}",
1382
+ "tags_url": "https://api.github.com/repos/defunkt/defunkt.github.com/tags{/tag}",
1383
+ "blobs_url": "https://api.github.com/repos/defunkt/defunkt.github.com/git/blobs{/sha}",
1384
+ "git_tags_url": "https://api.github.com/repos/defunkt/defunkt.github.com/git/tags{/sha}",
1385
+ "git_refs_url": "https://api.github.com/repos/defunkt/defunkt.github.com/git/refs{/sha}",
1386
+ "trees_url": "https://api.github.com/repos/defunkt/defunkt.github.com/git/trees{/sha}",
1387
+ "statuses_url": "https://api.github.com/repos/defunkt/defunkt.github.com/statuses/{sha}",
1388
+ "languages_url": "https://api.github.com/repos/defunkt/defunkt.github.com/languages",
1389
+ "stargazers_url": "https://api.github.com/repos/defunkt/defunkt.github.com/stargazers",
1390
+ "contributors_url": "https://api.github.com/repos/defunkt/defunkt.github.com/contributors",
1391
+ "subscribers_url": "https://api.github.com/repos/defunkt/defunkt.github.com/subscribers",
1392
+ "subscription_url": "https://api.github.com/repos/defunkt/defunkt.github.com/subscription",
1393
+ "commits_url": "https://api.github.com/repos/defunkt/defunkt.github.com/commits{/sha}",
1394
+ "git_commits_url": "https://api.github.com/repos/defunkt/defunkt.github.com/git/commits{/sha}",
1395
+ "comments_url": "https://api.github.com/repos/defunkt/defunkt.github.com/comments{/number}",
1396
+ "issue_comment_url": "https://api.github.com/repos/defunkt/defunkt.github.com/issues/comments/{number}",
1397
+ "contents_url": "https://api.github.com/repos/defunkt/defunkt.github.com/contents/{+path}",
1398
+ "compare_url": "https://api.github.com/repos/defunkt/defunkt.github.com/compare/{base}...{head}",
1399
+ "merges_url": "https://api.github.com/repos/defunkt/defunkt.github.com/merges",
1400
+ "archive_url": "https://api.github.com/repos/defunkt/defunkt.github.com/{archive_format}{/ref}",
1401
+ "downloads_url": "https://api.github.com/repos/defunkt/defunkt.github.com/downloads",
1402
+ "issues_url": "https://api.github.com/repos/defunkt/defunkt.github.com/issues{/number}",
1403
+ "pulls_url": "https://api.github.com/repos/defunkt/defunkt.github.com/pulls{/number}",
1404
+ "milestones_url": "https://api.github.com/repos/defunkt/defunkt.github.com/milestones{/number}",
1405
+ "notifications_url": "https://api.github.com/repos/defunkt/defunkt.github.com/notifications{?since,all,participating}",
1406
+ "labels_url": "https://api.github.com/repos/defunkt/defunkt.github.com/labels{/name}",
1407
+ "created_at": "2008-12-17T07:53:14Z",
1408
+ "updated_at": "2013-03-17T14:00:04Z",
1409
+ "pushed_at": "2011-06-07T00:11:04Z",
1410
+ "git_url": "git://github.com/defunkt/defunkt.github.com.git",
1411
+ "ssh_url": "git@github.com:defunkt/defunkt.github.com.git",
1412
+ "clone_url": "https://github.com/defunkt/defunkt.github.com.git",
1413
+ "svn_url": "https://github.com/defunkt/defunkt.github.com",
1414
+ "homepage": "http://chriswanstrath.com/",
1415
+ "size": 112,
1416
+ "watchers_count": 73,
1417
+ "language": null,
1418
+ "has_issues": false,
1419
+ "has_downloads": false,
1420
+ "has_wiki": false,
1421
+ "forks_count": 55,
1422
+ "mirror_url": null,
1423
+ "open_issues_count": 2,
1424
+ "forks": 55,
1425
+ "open_issues": 2,
1426
+ "watchers": 73,
1427
+ "master_branch": "master",
1428
+ "default_branch": "master"
1429
+ },
1430
+ {
1431
+ "id": 628288,
1432
+ "name": "djangode",
1433
+ "full_name": "defunkt/djangode",
1434
+ "owner": {
1435
+ "login": "defunkt",
1436
+ "id": 2,
1437
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
1438
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
1439
+ "url": "https://api.github.com/users/defunkt",
1440
+ "html_url": "https://github.com/defunkt",
1441
+ "followers_url": "https://api.github.com/users/defunkt/followers",
1442
+ "following_url": "https://api.github.com/users/defunkt/following",
1443
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
1444
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
1445
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
1446
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
1447
+ "repos_url": "https://api.github.com/users/defunkt/repos",
1448
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
1449
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
1450
+ "type": "User"
1451
+ },
1452
+ "private": false,
1453
+ "html_url": "https://github.com/defunkt/djangode",
1454
+ "description": "Utilities functions for node.js that borrow some useful concepts from Django",
1455
+ "fork": true,
1456
+ "url": "https://api.github.com/repos/defunkt/djangode",
1457
+ "forks_url": "https://api.github.com/repos/defunkt/djangode/forks",
1458
+ "keys_url": "https://api.github.com/repos/defunkt/djangode/keys{/key_id}",
1459
+ "collaborators_url": "https://api.github.com/repos/defunkt/djangode/collaborators{/collaborator}",
1460
+ "teams_url": "https://api.github.com/repos/defunkt/djangode/teams",
1461
+ "hooks_url": "https://api.github.com/repos/defunkt/djangode/hooks",
1462
+ "issue_events_url": "https://api.github.com/repos/defunkt/djangode/issues/events{/number}",
1463
+ "events_url": "https://api.github.com/repos/defunkt/djangode/events",
1464
+ "assignees_url": "https://api.github.com/repos/defunkt/djangode/assignees{/user}",
1465
+ "branches_url": "https://api.github.com/repos/defunkt/djangode/branches{/branch}",
1466
+ "tags_url": "https://api.github.com/repos/defunkt/djangode/tags{/tag}",
1467
+ "blobs_url": "https://api.github.com/repos/defunkt/djangode/git/blobs{/sha}",
1468
+ "git_tags_url": "https://api.github.com/repos/defunkt/djangode/git/tags{/sha}",
1469
+ "git_refs_url": "https://api.github.com/repos/defunkt/djangode/git/refs{/sha}",
1470
+ "trees_url": "https://api.github.com/repos/defunkt/djangode/git/trees{/sha}",
1471
+ "statuses_url": "https://api.github.com/repos/defunkt/djangode/statuses/{sha}",
1472
+ "languages_url": "https://api.github.com/repos/defunkt/djangode/languages",
1473
+ "stargazers_url": "https://api.github.com/repos/defunkt/djangode/stargazers",
1474
+ "contributors_url": "https://api.github.com/repos/defunkt/djangode/contributors",
1475
+ "subscribers_url": "https://api.github.com/repos/defunkt/djangode/subscribers",
1476
+ "subscription_url": "https://api.github.com/repos/defunkt/djangode/subscription",
1477
+ "commits_url": "https://api.github.com/repos/defunkt/djangode/commits{/sha}",
1478
+ "git_commits_url": "https://api.github.com/repos/defunkt/djangode/git/commits{/sha}",
1479
+ "comments_url": "https://api.github.com/repos/defunkt/djangode/comments{/number}",
1480
+ "issue_comment_url": "https://api.github.com/repos/defunkt/djangode/issues/comments/{number}",
1481
+ "contents_url": "https://api.github.com/repos/defunkt/djangode/contents/{+path}",
1482
+ "compare_url": "https://api.github.com/repos/defunkt/djangode/compare/{base}...{head}",
1483
+ "merges_url": "https://api.github.com/repos/defunkt/djangode/merges",
1484
+ "archive_url": "https://api.github.com/repos/defunkt/djangode/{archive_format}{/ref}",
1485
+ "downloads_url": "https://api.github.com/repos/defunkt/djangode/downloads",
1486
+ "issues_url": "https://api.github.com/repos/defunkt/djangode/issues{/number}",
1487
+ "pulls_url": "https://api.github.com/repos/defunkt/djangode/pulls{/number}",
1488
+ "milestones_url": "https://api.github.com/repos/defunkt/djangode/milestones{/number}",
1489
+ "notifications_url": "https://api.github.com/repos/defunkt/djangode/notifications{?since,all,participating}",
1490
+ "labels_url": "https://api.github.com/repos/defunkt/djangode/labels{/name}",
1491
+ "created_at": "2010-04-25T16:41:30Z",
1492
+ "updated_at": "2013-02-01T16:58:27Z",
1493
+ "pushed_at": "2010-04-25T16:42:56Z",
1494
+ "git_url": "git://github.com/defunkt/djangode.git",
1495
+ "ssh_url": "git@github.com:defunkt/djangode.git",
1496
+ "clone_url": "https://github.com/defunkt/djangode.git",
1497
+ "svn_url": "https://github.com/defunkt/djangode",
1498
+ "homepage": "",
1499
+ "size": 104,
1500
+ "watchers_count": 4,
1501
+ "language": "JavaScript",
1502
+ "has_issues": false,
1503
+ "has_downloads": true,
1504
+ "has_wiki": true,
1505
+ "forks_count": 4,
1506
+ "mirror_url": null,
1507
+ "open_issues_count": 0,
1508
+ "forks": 4,
1509
+ "open_issues": 0,
1510
+ "watchers": 4,
1511
+ "master_branch": "master",
1512
+ "default_branch": "master"
1513
+ },
1514
+ {
1515
+ "id": 2448060,
1516
+ "name": "dodgeball.github.com",
1517
+ "full_name": "defunkt/dodgeball.github.com",
1518
+ "owner": {
1519
+ "login": "defunkt",
1520
+ "id": 2,
1521
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
1522
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
1523
+ "url": "https://api.github.com/users/defunkt",
1524
+ "html_url": "https://github.com/defunkt",
1525
+ "followers_url": "https://api.github.com/users/defunkt/followers",
1526
+ "following_url": "https://api.github.com/users/defunkt/following",
1527
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
1528
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
1529
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
1530
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
1531
+ "repos_url": "https://api.github.com/users/defunkt/repos",
1532
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
1533
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
1534
+ "type": "User"
1535
+ },
1536
+ "private": false,
1537
+ "html_url": "https://github.com/defunkt/dodgeball.github.com",
1538
+ "description": "yes",
1539
+ "fork": true,
1540
+ "url": "https://api.github.com/repos/defunkt/dodgeball.github.com",
1541
+ "forks_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/forks",
1542
+ "keys_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/keys{/key_id}",
1543
+ "collaborators_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/collaborators{/collaborator}",
1544
+ "teams_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/teams",
1545
+ "hooks_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/hooks",
1546
+ "issue_events_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/issues/events{/number}",
1547
+ "events_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/events",
1548
+ "assignees_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/assignees{/user}",
1549
+ "branches_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/branches{/branch}",
1550
+ "tags_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/tags{/tag}",
1551
+ "blobs_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/git/blobs{/sha}",
1552
+ "git_tags_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/git/tags{/sha}",
1553
+ "git_refs_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/git/refs{/sha}",
1554
+ "trees_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/git/trees{/sha}",
1555
+ "statuses_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/statuses/{sha}",
1556
+ "languages_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/languages",
1557
+ "stargazers_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/stargazers",
1558
+ "contributors_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/contributors",
1559
+ "subscribers_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/subscribers",
1560
+ "subscription_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/subscription",
1561
+ "commits_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/commits{/sha}",
1562
+ "git_commits_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/git/commits{/sha}",
1563
+ "comments_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/comments{/number}",
1564
+ "issue_comment_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/issues/comments/{number}",
1565
+ "contents_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/contents/{+path}",
1566
+ "compare_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/compare/{base}...{head}",
1567
+ "merges_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/merges",
1568
+ "archive_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/{archive_format}{/ref}",
1569
+ "downloads_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/downloads",
1570
+ "issues_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/issues{/number}",
1571
+ "pulls_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/pulls{/number}",
1572
+ "milestones_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/milestones{/number}",
1573
+ "notifications_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/notifications{?since,all,participating}",
1574
+ "labels_url": "https://api.github.com/repos/defunkt/dodgeball.github.com/labels{/name}",
1575
+ "created_at": "2011-09-24T03:01:09Z",
1576
+ "updated_at": "2013-02-01T16:58:32Z",
1577
+ "pushed_at": "2011-09-24T03:01:22Z",
1578
+ "git_url": "git://github.com/defunkt/dodgeball.github.com.git",
1579
+ "ssh_url": "git@github.com:defunkt/dodgeball.github.com.git",
1580
+ "clone_url": "https://github.com/defunkt/dodgeball.github.com.git",
1581
+ "svn_url": "https://github.com/defunkt/dodgeball.github.com",
1582
+ "homepage": "",
1583
+ "size": 92,
1584
+ "watchers_count": 4,
1585
+ "language": "Ruby",
1586
+ "has_issues": false,
1587
+ "has_downloads": true,
1588
+ "has_wiki": true,
1589
+ "forks_count": 2,
1590
+ "mirror_url": null,
1591
+ "open_issues_count": 0,
1592
+ "forks": 2,
1593
+ "open_issues": 0,
1594
+ "watchers": 4,
1595
+ "master_branch": "master",
1596
+ "default_branch": "master"
1597
+ },
1598
+ {
1599
+ "id": 5171653,
1600
+ "name": "dotenv",
1601
+ "full_name": "defunkt/dotenv",
1602
+ "owner": {
1603
+ "login": "defunkt",
1604
+ "id": 2,
1605
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
1606
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
1607
+ "url": "https://api.github.com/users/defunkt",
1608
+ "html_url": "https://github.com/defunkt",
1609
+ "followers_url": "https://api.github.com/users/defunkt/followers",
1610
+ "following_url": "https://api.github.com/users/defunkt/following",
1611
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
1612
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
1613
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
1614
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
1615
+ "repos_url": "https://api.github.com/users/defunkt/repos",
1616
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
1617
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
1618
+ "type": "User"
1619
+ },
1620
+ "private": false,
1621
+ "html_url": "https://github.com/defunkt/dotenv",
1622
+ "description": "Loads environment variables from `.env`. ",
1623
+ "fork": true,
1624
+ "url": "https://api.github.com/repos/defunkt/dotenv",
1625
+ "forks_url": "https://api.github.com/repos/defunkt/dotenv/forks",
1626
+ "keys_url": "https://api.github.com/repos/defunkt/dotenv/keys{/key_id}",
1627
+ "collaborators_url": "https://api.github.com/repos/defunkt/dotenv/collaborators{/collaborator}",
1628
+ "teams_url": "https://api.github.com/repos/defunkt/dotenv/teams",
1629
+ "hooks_url": "https://api.github.com/repos/defunkt/dotenv/hooks",
1630
+ "issue_events_url": "https://api.github.com/repos/defunkt/dotenv/issues/events{/number}",
1631
+ "events_url": "https://api.github.com/repos/defunkt/dotenv/events",
1632
+ "assignees_url": "https://api.github.com/repos/defunkt/dotenv/assignees{/user}",
1633
+ "branches_url": "https://api.github.com/repos/defunkt/dotenv/branches{/branch}",
1634
+ "tags_url": "https://api.github.com/repos/defunkt/dotenv/tags{/tag}",
1635
+ "blobs_url": "https://api.github.com/repos/defunkt/dotenv/git/blobs{/sha}",
1636
+ "git_tags_url": "https://api.github.com/repos/defunkt/dotenv/git/tags{/sha}",
1637
+ "git_refs_url": "https://api.github.com/repos/defunkt/dotenv/git/refs{/sha}",
1638
+ "trees_url": "https://api.github.com/repos/defunkt/dotenv/git/trees{/sha}",
1639
+ "statuses_url": "https://api.github.com/repos/defunkt/dotenv/statuses/{sha}",
1640
+ "languages_url": "https://api.github.com/repos/defunkt/dotenv/languages",
1641
+ "stargazers_url": "https://api.github.com/repos/defunkt/dotenv/stargazers",
1642
+ "contributors_url": "https://api.github.com/repos/defunkt/dotenv/contributors",
1643
+ "subscribers_url": "https://api.github.com/repos/defunkt/dotenv/subscribers",
1644
+ "subscription_url": "https://api.github.com/repos/defunkt/dotenv/subscription",
1645
+ "commits_url": "https://api.github.com/repos/defunkt/dotenv/commits{/sha}",
1646
+ "git_commits_url": "https://api.github.com/repos/defunkt/dotenv/git/commits{/sha}",
1647
+ "comments_url": "https://api.github.com/repos/defunkt/dotenv/comments{/number}",
1648
+ "issue_comment_url": "https://api.github.com/repos/defunkt/dotenv/issues/comments/{number}",
1649
+ "contents_url": "https://api.github.com/repos/defunkt/dotenv/contents/{+path}",
1650
+ "compare_url": "https://api.github.com/repos/defunkt/dotenv/compare/{base}...{head}",
1651
+ "merges_url": "https://api.github.com/repos/defunkt/dotenv/merges",
1652
+ "archive_url": "https://api.github.com/repos/defunkt/dotenv/{archive_format}{/ref}",
1653
+ "downloads_url": "https://api.github.com/repos/defunkt/dotenv/downloads",
1654
+ "issues_url": "https://api.github.com/repos/defunkt/dotenv/issues{/number}",
1655
+ "pulls_url": "https://api.github.com/repos/defunkt/dotenv/pulls{/number}",
1656
+ "milestones_url": "https://api.github.com/repos/defunkt/dotenv/milestones{/number}",
1657
+ "notifications_url": "https://api.github.com/repos/defunkt/dotenv/notifications{?since,all,participating}",
1658
+ "labels_url": "https://api.github.com/repos/defunkt/dotenv/labels{/name}",
1659
+ "created_at": "2012-07-24T21:43:19Z",
1660
+ "updated_at": "2013-02-01T16:58:33Z",
1661
+ "pushed_at": "2012-07-24T04:30:34Z",
1662
+ "git_url": "git://github.com/defunkt/dotenv.git",
1663
+ "ssh_url": "git@github.com:defunkt/dotenv.git",
1664
+ "clone_url": "https://github.com/defunkt/dotenv.git",
1665
+ "svn_url": "https://github.com/defunkt/dotenv",
1666
+ "homepage": null,
1667
+ "size": 92,
1668
+ "watchers_count": 2,
1669
+ "language": "Ruby",
1670
+ "has_issues": false,
1671
+ "has_downloads": true,
1672
+ "has_wiki": true,
1673
+ "forks_count": 2,
1674
+ "mirror_url": null,
1675
+ "open_issues_count": 0,
1676
+ "forks": 2,
1677
+ "open_issues": 0,
1678
+ "watchers": 2,
1679
+ "master_branch": "master",
1680
+ "default_branch": "master"
1681
+ },
1682
+ {
1683
+ "id": 1336779,
1684
+ "name": "dotjs",
1685
+ "full_name": "defunkt/dotjs",
1686
+ "owner": {
1687
+ "login": "defunkt",
1688
+ "id": 2,
1689
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
1690
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
1691
+ "url": "https://api.github.com/users/defunkt",
1692
+ "html_url": "https://github.com/defunkt",
1693
+ "followers_url": "https://api.github.com/users/defunkt/followers",
1694
+ "following_url": "https://api.github.com/users/defunkt/following",
1695
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
1696
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
1697
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
1698
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
1699
+ "repos_url": "https://api.github.com/users/defunkt/repos",
1700
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
1701
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
1702
+ "type": "User"
1703
+ },
1704
+ "private": false,
1705
+ "html_url": "https://github.com/defunkt/dotjs",
1706
+ "description": "~/.js",
1707
+ "fork": false,
1708
+ "url": "https://api.github.com/repos/defunkt/dotjs",
1709
+ "forks_url": "https://api.github.com/repos/defunkt/dotjs/forks",
1710
+ "keys_url": "https://api.github.com/repos/defunkt/dotjs/keys{/key_id}",
1711
+ "collaborators_url": "https://api.github.com/repos/defunkt/dotjs/collaborators{/collaborator}",
1712
+ "teams_url": "https://api.github.com/repos/defunkt/dotjs/teams",
1713
+ "hooks_url": "https://api.github.com/repos/defunkt/dotjs/hooks",
1714
+ "issue_events_url": "https://api.github.com/repos/defunkt/dotjs/issues/events{/number}",
1715
+ "events_url": "https://api.github.com/repos/defunkt/dotjs/events",
1716
+ "assignees_url": "https://api.github.com/repos/defunkt/dotjs/assignees{/user}",
1717
+ "branches_url": "https://api.github.com/repos/defunkt/dotjs/branches{/branch}",
1718
+ "tags_url": "https://api.github.com/repos/defunkt/dotjs/tags{/tag}",
1719
+ "blobs_url": "https://api.github.com/repos/defunkt/dotjs/git/blobs{/sha}",
1720
+ "git_tags_url": "https://api.github.com/repos/defunkt/dotjs/git/tags{/sha}",
1721
+ "git_refs_url": "https://api.github.com/repos/defunkt/dotjs/git/refs{/sha}",
1722
+ "trees_url": "https://api.github.com/repos/defunkt/dotjs/git/trees{/sha}",
1723
+ "statuses_url": "https://api.github.com/repos/defunkt/dotjs/statuses/{sha}",
1724
+ "languages_url": "https://api.github.com/repos/defunkt/dotjs/languages",
1725
+ "stargazers_url": "https://api.github.com/repos/defunkt/dotjs/stargazers",
1726
+ "contributors_url": "https://api.github.com/repos/defunkt/dotjs/contributors",
1727
+ "subscribers_url": "https://api.github.com/repos/defunkt/dotjs/subscribers",
1728
+ "subscription_url": "https://api.github.com/repos/defunkt/dotjs/subscription",
1729
+ "commits_url": "https://api.github.com/repos/defunkt/dotjs/commits{/sha}",
1730
+ "git_commits_url": "https://api.github.com/repos/defunkt/dotjs/git/commits{/sha}",
1731
+ "comments_url": "https://api.github.com/repos/defunkt/dotjs/comments{/number}",
1732
+ "issue_comment_url": "https://api.github.com/repos/defunkt/dotjs/issues/comments/{number}",
1733
+ "contents_url": "https://api.github.com/repos/defunkt/dotjs/contents/{+path}",
1734
+ "compare_url": "https://api.github.com/repos/defunkt/dotjs/compare/{base}...{head}",
1735
+ "merges_url": "https://api.github.com/repos/defunkt/dotjs/merges",
1736
+ "archive_url": "https://api.github.com/repos/defunkt/dotjs/{archive_format}{/ref}",
1737
+ "downloads_url": "https://api.github.com/repos/defunkt/dotjs/downloads",
1738
+ "issues_url": "https://api.github.com/repos/defunkt/dotjs/issues{/number}",
1739
+ "pulls_url": "https://api.github.com/repos/defunkt/dotjs/pulls{/number}",
1740
+ "milestones_url": "https://api.github.com/repos/defunkt/dotjs/milestones{/number}",
1741
+ "notifications_url": "https://api.github.com/repos/defunkt/dotjs/notifications{?since,all,participating}",
1742
+ "labels_url": "https://api.github.com/repos/defunkt/dotjs/labels{/name}",
1743
+ "created_at": "2011-02-07T07:01:33Z",
1744
+ "updated_at": "2013-03-16T07:41:55Z",
1745
+ "pushed_at": "2013-01-21T22:13:14Z",
1746
+ "git_url": "git://github.com/defunkt/dotjs.git",
1747
+ "ssh_url": "git@github.com:defunkt/dotjs.git",
1748
+ "clone_url": "https://github.com/defunkt/dotjs.git",
1749
+ "svn_url": "https://github.com/defunkt/dotjs",
1750
+ "homepage": "http://bit.ly/dotjs",
1751
+ "size": 192,
1752
+ "watchers_count": 873,
1753
+ "language": "Ruby",
1754
+ "has_issues": true,
1755
+ "has_downloads": true,
1756
+ "has_wiki": false,
1757
+ "forks_count": 103,
1758
+ "mirror_url": null,
1759
+ "open_issues_count": 8,
1760
+ "forks": 103,
1761
+ "open_issues": 8,
1762
+ "watchers": 873,
1763
+ "master_branch": "master",
1764
+ "default_branch": "master"
1765
+ },
1766
+ {
1767
+ "id": 69384,
1768
+ "name": "electron-wordwrap",
1769
+ "full_name": "defunkt/electron-wordwrap",
1770
+ "owner": {
1771
+ "login": "defunkt",
1772
+ "id": 2,
1773
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
1774
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
1775
+ "url": "https://api.github.com/users/defunkt",
1776
+ "html_url": "https://github.com/defunkt",
1777
+ "followers_url": "https://api.github.com/users/defunkt/followers",
1778
+ "following_url": "https://api.github.com/users/defunkt/following",
1779
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
1780
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
1781
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
1782
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
1783
+ "repos_url": "https://api.github.com/users/defunkt/repos",
1784
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
1785
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
1786
+ "type": "User"
1787
+ },
1788
+ "private": false,
1789
+ "html_url": "https://github.com/defunkt/electron-wordwrap",
1790
+ "description": "",
1791
+ "fork": false,
1792
+ "url": "https://api.github.com/repos/defunkt/electron-wordwrap",
1793
+ "forks_url": "https://api.github.com/repos/defunkt/electron-wordwrap/forks",
1794
+ "keys_url": "https://api.github.com/repos/defunkt/electron-wordwrap/keys{/key_id}",
1795
+ "collaborators_url": "https://api.github.com/repos/defunkt/electron-wordwrap/collaborators{/collaborator}",
1796
+ "teams_url": "https://api.github.com/repos/defunkt/electron-wordwrap/teams",
1797
+ "hooks_url": "https://api.github.com/repos/defunkt/electron-wordwrap/hooks",
1798
+ "issue_events_url": "https://api.github.com/repos/defunkt/electron-wordwrap/issues/events{/number}",
1799
+ "events_url": "https://api.github.com/repos/defunkt/electron-wordwrap/events",
1800
+ "assignees_url": "https://api.github.com/repos/defunkt/electron-wordwrap/assignees{/user}",
1801
+ "branches_url": "https://api.github.com/repos/defunkt/electron-wordwrap/branches{/branch}",
1802
+ "tags_url": "https://api.github.com/repos/defunkt/electron-wordwrap/tags{/tag}",
1803
+ "blobs_url": "https://api.github.com/repos/defunkt/electron-wordwrap/git/blobs{/sha}",
1804
+ "git_tags_url": "https://api.github.com/repos/defunkt/electron-wordwrap/git/tags{/sha}",
1805
+ "git_refs_url": "https://api.github.com/repos/defunkt/electron-wordwrap/git/refs{/sha}",
1806
+ "trees_url": "https://api.github.com/repos/defunkt/electron-wordwrap/git/trees{/sha}",
1807
+ "statuses_url": "https://api.github.com/repos/defunkt/electron-wordwrap/statuses/{sha}",
1808
+ "languages_url": "https://api.github.com/repos/defunkt/electron-wordwrap/languages",
1809
+ "stargazers_url": "https://api.github.com/repos/defunkt/electron-wordwrap/stargazers",
1810
+ "contributors_url": "https://api.github.com/repos/defunkt/electron-wordwrap/contributors",
1811
+ "subscribers_url": "https://api.github.com/repos/defunkt/electron-wordwrap/subscribers",
1812
+ "subscription_url": "https://api.github.com/repos/defunkt/electron-wordwrap/subscription",
1813
+ "commits_url": "https://api.github.com/repos/defunkt/electron-wordwrap/commits{/sha}",
1814
+ "git_commits_url": "https://api.github.com/repos/defunkt/electron-wordwrap/git/commits{/sha}",
1815
+ "comments_url": "https://api.github.com/repos/defunkt/electron-wordwrap/comments{/number}",
1816
+ "issue_comment_url": "https://api.github.com/repos/defunkt/electron-wordwrap/issues/comments/{number}",
1817
+ "contents_url": "https://api.github.com/repos/defunkt/electron-wordwrap/contents/{+path}",
1818
+ "compare_url": "https://api.github.com/repos/defunkt/electron-wordwrap/compare/{base}...{head}",
1819
+ "merges_url": "https://api.github.com/repos/defunkt/electron-wordwrap/merges",
1820
+ "archive_url": "https://api.github.com/repos/defunkt/electron-wordwrap/{archive_format}{/ref}",
1821
+ "downloads_url": "https://api.github.com/repos/defunkt/electron-wordwrap/downloads",
1822
+ "issues_url": "https://api.github.com/repos/defunkt/electron-wordwrap/issues{/number}",
1823
+ "pulls_url": "https://api.github.com/repos/defunkt/electron-wordwrap/pulls{/number}",
1824
+ "milestones_url": "https://api.github.com/repos/defunkt/electron-wordwrap/milestones{/number}",
1825
+ "notifications_url": "https://api.github.com/repos/defunkt/electron-wordwrap/notifications{?since,all,participating}",
1826
+ "labels_url": "https://api.github.com/repos/defunkt/electron-wordwrap/labels{/name}",
1827
+ "created_at": "2008-10-29T20:03:17Z",
1828
+ "updated_at": "2013-02-01T16:58:19Z",
1829
+ "pushed_at": "2008-10-29T20:28:21Z",
1830
+ "git_url": "git://github.com/defunkt/electron-wordwrap.git",
1831
+ "ssh_url": "git@github.com:defunkt/electron-wordwrap.git",
1832
+ "clone_url": "https://github.com/defunkt/electron-wordwrap.git",
1833
+ "svn_url": "https://github.com/defunkt/electron-wordwrap",
1834
+ "homepage": "",
1835
+ "size": 88,
1836
+ "watchers_count": 3,
1837
+ "language": null,
1838
+ "has_issues": true,
1839
+ "has_downloads": true,
1840
+ "has_wiki": true,
1841
+ "forks_count": 1,
1842
+ "mirror_url": null,
1843
+ "open_issues_count": 0,
1844
+ "forks": 1,
1845
+ "open_issues": 0,
1846
+ "watchers": 3,
1847
+ "master_branch": "master",
1848
+ "default_branch": "master"
1849
+ },
1850
+ {
1851
+ "id": 43903,
1852
+ "name": "emacs",
1853
+ "full_name": "defunkt/emacs",
1854
+ "owner": {
1855
+ "login": "defunkt",
1856
+ "id": 2,
1857
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
1858
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
1859
+ "url": "https://api.github.com/users/defunkt",
1860
+ "html_url": "https://github.com/defunkt",
1861
+ "followers_url": "https://api.github.com/users/defunkt/followers",
1862
+ "following_url": "https://api.github.com/users/defunkt/following",
1863
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
1864
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
1865
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
1866
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
1867
+ "repos_url": "https://api.github.com/users/defunkt/repos",
1868
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
1869
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
1870
+ "type": "User"
1871
+ },
1872
+ "private": false,
1873
+ "html_url": "https://github.com/defunkt/emacs",
1874
+ "description": "My Emacs config",
1875
+ "fork": false,
1876
+ "url": "https://api.github.com/repos/defunkt/emacs",
1877
+ "forks_url": "https://api.github.com/repos/defunkt/emacs/forks",
1878
+ "keys_url": "https://api.github.com/repos/defunkt/emacs/keys{/key_id}",
1879
+ "collaborators_url": "https://api.github.com/repos/defunkt/emacs/collaborators{/collaborator}",
1880
+ "teams_url": "https://api.github.com/repos/defunkt/emacs/teams",
1881
+ "hooks_url": "https://api.github.com/repos/defunkt/emacs/hooks",
1882
+ "issue_events_url": "https://api.github.com/repos/defunkt/emacs/issues/events{/number}",
1883
+ "events_url": "https://api.github.com/repos/defunkt/emacs/events",
1884
+ "assignees_url": "https://api.github.com/repos/defunkt/emacs/assignees{/user}",
1885
+ "branches_url": "https://api.github.com/repos/defunkt/emacs/branches{/branch}",
1886
+ "tags_url": "https://api.github.com/repos/defunkt/emacs/tags{/tag}",
1887
+ "blobs_url": "https://api.github.com/repos/defunkt/emacs/git/blobs{/sha}",
1888
+ "git_tags_url": "https://api.github.com/repos/defunkt/emacs/git/tags{/sha}",
1889
+ "git_refs_url": "https://api.github.com/repos/defunkt/emacs/git/refs{/sha}",
1890
+ "trees_url": "https://api.github.com/repos/defunkt/emacs/git/trees{/sha}",
1891
+ "statuses_url": "https://api.github.com/repos/defunkt/emacs/statuses/{sha}",
1892
+ "languages_url": "https://api.github.com/repos/defunkt/emacs/languages",
1893
+ "stargazers_url": "https://api.github.com/repos/defunkt/emacs/stargazers",
1894
+ "contributors_url": "https://api.github.com/repos/defunkt/emacs/contributors",
1895
+ "subscribers_url": "https://api.github.com/repos/defunkt/emacs/subscribers",
1896
+ "subscription_url": "https://api.github.com/repos/defunkt/emacs/subscription",
1897
+ "commits_url": "https://api.github.com/repos/defunkt/emacs/commits{/sha}",
1898
+ "git_commits_url": "https://api.github.com/repos/defunkt/emacs/git/commits{/sha}",
1899
+ "comments_url": "https://api.github.com/repos/defunkt/emacs/comments{/number}",
1900
+ "issue_comment_url": "https://api.github.com/repos/defunkt/emacs/issues/comments/{number}",
1901
+ "contents_url": "https://api.github.com/repos/defunkt/emacs/contents/{+path}",
1902
+ "compare_url": "https://api.github.com/repos/defunkt/emacs/compare/{base}...{head}",
1903
+ "merges_url": "https://api.github.com/repos/defunkt/emacs/merges",
1904
+ "archive_url": "https://api.github.com/repos/defunkt/emacs/{archive_format}{/ref}",
1905
+ "downloads_url": "https://api.github.com/repos/defunkt/emacs/downloads",
1906
+ "issues_url": "https://api.github.com/repos/defunkt/emacs/issues{/number}",
1907
+ "pulls_url": "https://api.github.com/repos/defunkt/emacs/pulls{/number}",
1908
+ "milestones_url": "https://api.github.com/repos/defunkt/emacs/milestones{/number}",
1909
+ "notifications_url": "https://api.github.com/repos/defunkt/emacs/notifications{?since,all,participating}",
1910
+ "labels_url": "https://api.github.com/repos/defunkt/emacs/labels{/name}",
1911
+ "created_at": "2008-08-19T10:50:19Z",
1912
+ "updated_at": "2013-02-25T10:53:08Z",
1913
+ "pushed_at": "2011-10-25T21:53:46Z",
1914
+ "git_url": "git://github.com/defunkt/emacs.git",
1915
+ "ssh_url": "git@github.com:defunkt/emacs.git",
1916
+ "clone_url": "https://github.com/defunkt/emacs.git",
1917
+ "svn_url": "https://github.com/defunkt/emacs",
1918
+ "homepage": "",
1919
+ "size": 128,
1920
+ "watchers_count": 171,
1921
+ "language": "Emacs Lisp",
1922
+ "has_issues": false,
1923
+ "has_downloads": false,
1924
+ "has_wiki": false,
1925
+ "forks_count": 38,
1926
+ "mirror_url": null,
1927
+ "open_issues_count": 0,
1928
+ "forks": 38,
1929
+ "open_issues": 0,
1930
+ "watchers": 171,
1931
+ "master_branch": "master",
1932
+ "default_branch": "master"
1933
+ },
1934
+ {
1935
+ "id": 2998404,
1936
+ "name": "email_reply_parser",
1937
+ "full_name": "defunkt/email_reply_parser",
1938
+ "owner": {
1939
+ "login": "defunkt",
1940
+ "id": 2,
1941
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
1942
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
1943
+ "url": "https://api.github.com/users/defunkt",
1944
+ "html_url": "https://github.com/defunkt",
1945
+ "followers_url": "https://api.github.com/users/defunkt/followers",
1946
+ "following_url": "https://api.github.com/users/defunkt/following",
1947
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
1948
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
1949
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
1950
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
1951
+ "repos_url": "https://api.github.com/users/defunkt/repos",
1952
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
1953
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
1954
+ "type": "User"
1955
+ },
1956
+ "private": false,
1957
+ "html_url": "https://github.com/defunkt/email_reply_parser",
1958
+ "description": "",
1959
+ "fork": true,
1960
+ "url": "https://api.github.com/repos/defunkt/email_reply_parser",
1961
+ "forks_url": "https://api.github.com/repos/defunkt/email_reply_parser/forks",
1962
+ "keys_url": "https://api.github.com/repos/defunkt/email_reply_parser/keys{/key_id}",
1963
+ "collaborators_url": "https://api.github.com/repos/defunkt/email_reply_parser/collaborators{/collaborator}",
1964
+ "teams_url": "https://api.github.com/repos/defunkt/email_reply_parser/teams",
1965
+ "hooks_url": "https://api.github.com/repos/defunkt/email_reply_parser/hooks",
1966
+ "issue_events_url": "https://api.github.com/repos/defunkt/email_reply_parser/issues/events{/number}",
1967
+ "events_url": "https://api.github.com/repos/defunkt/email_reply_parser/events",
1968
+ "assignees_url": "https://api.github.com/repos/defunkt/email_reply_parser/assignees{/user}",
1969
+ "branches_url": "https://api.github.com/repos/defunkt/email_reply_parser/branches{/branch}",
1970
+ "tags_url": "https://api.github.com/repos/defunkt/email_reply_parser/tags{/tag}",
1971
+ "blobs_url": "https://api.github.com/repos/defunkt/email_reply_parser/git/blobs{/sha}",
1972
+ "git_tags_url": "https://api.github.com/repos/defunkt/email_reply_parser/git/tags{/sha}",
1973
+ "git_refs_url": "https://api.github.com/repos/defunkt/email_reply_parser/git/refs{/sha}",
1974
+ "trees_url": "https://api.github.com/repos/defunkt/email_reply_parser/git/trees{/sha}",
1975
+ "statuses_url": "https://api.github.com/repos/defunkt/email_reply_parser/statuses/{sha}",
1976
+ "languages_url": "https://api.github.com/repos/defunkt/email_reply_parser/languages",
1977
+ "stargazers_url": "https://api.github.com/repos/defunkt/email_reply_parser/stargazers",
1978
+ "contributors_url": "https://api.github.com/repos/defunkt/email_reply_parser/contributors",
1979
+ "subscribers_url": "https://api.github.com/repos/defunkt/email_reply_parser/subscribers",
1980
+ "subscription_url": "https://api.github.com/repos/defunkt/email_reply_parser/subscription",
1981
+ "commits_url": "https://api.github.com/repos/defunkt/email_reply_parser/commits{/sha}",
1982
+ "git_commits_url": "https://api.github.com/repos/defunkt/email_reply_parser/git/commits{/sha}",
1983
+ "comments_url": "https://api.github.com/repos/defunkt/email_reply_parser/comments{/number}",
1984
+ "issue_comment_url": "https://api.github.com/repos/defunkt/email_reply_parser/issues/comments/{number}",
1985
+ "contents_url": "https://api.github.com/repos/defunkt/email_reply_parser/contents/{+path}",
1986
+ "compare_url": "https://api.github.com/repos/defunkt/email_reply_parser/compare/{base}...{head}",
1987
+ "merges_url": "https://api.github.com/repos/defunkt/email_reply_parser/merges",
1988
+ "archive_url": "https://api.github.com/repos/defunkt/email_reply_parser/{archive_format}{/ref}",
1989
+ "downloads_url": "https://api.github.com/repos/defunkt/email_reply_parser/downloads",
1990
+ "issues_url": "https://api.github.com/repos/defunkt/email_reply_parser/issues{/number}",
1991
+ "pulls_url": "https://api.github.com/repos/defunkt/email_reply_parser/pulls{/number}",
1992
+ "milestones_url": "https://api.github.com/repos/defunkt/email_reply_parser/milestones{/number}",
1993
+ "notifications_url": "https://api.github.com/repos/defunkt/email_reply_parser/notifications{?since,all,participating}",
1994
+ "labels_url": "https://api.github.com/repos/defunkt/email_reply_parser/labels{/name}",
1995
+ "created_at": "2011-12-16T23:13:05Z",
1996
+ "updated_at": "2013-03-12T22:09:03Z",
1997
+ "pushed_at": "2011-12-16T23:13:24Z",
1998
+ "git_url": "git://github.com/defunkt/email_reply_parser.git",
1999
+ "ssh_url": "git@github.com:defunkt/email_reply_parser.git",
2000
+ "clone_url": "https://github.com/defunkt/email_reply_parser.git",
2001
+ "svn_url": "https://github.com/defunkt/email_reply_parser",
2002
+ "homepage": "",
2003
+ "size": 108,
2004
+ "watchers_count": 2,
2005
+ "language": "Ruby",
2006
+ "has_issues": false,
2007
+ "has_downloads": true,
2008
+ "has_wiki": true,
2009
+ "forks_count": 2,
2010
+ "mirror_url": null,
2011
+ "open_issues_count": 0,
2012
+ "forks": 2,
2013
+ "open_issues": 0,
2014
+ "watchers": 2,
2015
+ "master_branch": "master",
2016
+ "default_branch": "master"
2017
+ },
2018
+ {
2019
+ "id": 1167457,
2020
+ "name": "evilbot",
2021
+ "full_name": "defunkt/evilbot",
2022
+ "owner": {
2023
+ "login": "defunkt",
2024
+ "id": 2,
2025
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
2026
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
2027
+ "url": "https://api.github.com/users/defunkt",
2028
+ "html_url": "https://github.com/defunkt",
2029
+ "followers_url": "https://api.github.com/users/defunkt/followers",
2030
+ "following_url": "https://api.github.com/users/defunkt/following",
2031
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
2032
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
2033
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
2034
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
2035
+ "repos_url": "https://api.github.com/users/defunkt/repos",
2036
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
2037
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
2038
+ "type": "User"
2039
+ },
2040
+ "private": false,
2041
+ "html_url": "https://github.com/defunkt/evilbot",
2042
+ "description": "an evil bot that's definitely not for convore",
2043
+ "fork": false,
2044
+ "url": "https://api.github.com/repos/defunkt/evilbot",
2045
+ "forks_url": "https://api.github.com/repos/defunkt/evilbot/forks",
2046
+ "keys_url": "https://api.github.com/repos/defunkt/evilbot/keys{/key_id}",
2047
+ "collaborators_url": "https://api.github.com/repos/defunkt/evilbot/collaborators{/collaborator}",
2048
+ "teams_url": "https://api.github.com/repos/defunkt/evilbot/teams",
2049
+ "hooks_url": "https://api.github.com/repos/defunkt/evilbot/hooks",
2050
+ "issue_events_url": "https://api.github.com/repos/defunkt/evilbot/issues/events{/number}",
2051
+ "events_url": "https://api.github.com/repos/defunkt/evilbot/events",
2052
+ "assignees_url": "https://api.github.com/repos/defunkt/evilbot/assignees{/user}",
2053
+ "branches_url": "https://api.github.com/repos/defunkt/evilbot/branches{/branch}",
2054
+ "tags_url": "https://api.github.com/repos/defunkt/evilbot/tags{/tag}",
2055
+ "blobs_url": "https://api.github.com/repos/defunkt/evilbot/git/blobs{/sha}",
2056
+ "git_tags_url": "https://api.github.com/repos/defunkt/evilbot/git/tags{/sha}",
2057
+ "git_refs_url": "https://api.github.com/repos/defunkt/evilbot/git/refs{/sha}",
2058
+ "trees_url": "https://api.github.com/repos/defunkt/evilbot/git/trees{/sha}",
2059
+ "statuses_url": "https://api.github.com/repos/defunkt/evilbot/statuses/{sha}",
2060
+ "languages_url": "https://api.github.com/repos/defunkt/evilbot/languages",
2061
+ "stargazers_url": "https://api.github.com/repos/defunkt/evilbot/stargazers",
2062
+ "contributors_url": "https://api.github.com/repos/defunkt/evilbot/contributors",
2063
+ "subscribers_url": "https://api.github.com/repos/defunkt/evilbot/subscribers",
2064
+ "subscription_url": "https://api.github.com/repos/defunkt/evilbot/subscription",
2065
+ "commits_url": "https://api.github.com/repos/defunkt/evilbot/commits{/sha}",
2066
+ "git_commits_url": "https://api.github.com/repos/defunkt/evilbot/git/commits{/sha}",
2067
+ "comments_url": "https://api.github.com/repos/defunkt/evilbot/comments{/number}",
2068
+ "issue_comment_url": "https://api.github.com/repos/defunkt/evilbot/issues/comments/{number}",
2069
+ "contents_url": "https://api.github.com/repos/defunkt/evilbot/contents/{+path}",
2070
+ "compare_url": "https://api.github.com/repos/defunkt/evilbot/compare/{base}...{head}",
2071
+ "merges_url": "https://api.github.com/repos/defunkt/evilbot/merges",
2072
+ "archive_url": "https://api.github.com/repos/defunkt/evilbot/{archive_format}{/ref}",
2073
+ "downloads_url": "https://api.github.com/repos/defunkt/evilbot/downloads",
2074
+ "issues_url": "https://api.github.com/repos/defunkt/evilbot/issues{/number}",
2075
+ "pulls_url": "https://api.github.com/repos/defunkt/evilbot/pulls{/number}",
2076
+ "milestones_url": "https://api.github.com/repos/defunkt/evilbot/milestones{/number}",
2077
+ "notifications_url": "https://api.github.com/repos/defunkt/evilbot/notifications{?since,all,participating}",
2078
+ "labels_url": "https://api.github.com/repos/defunkt/evilbot/labels{/name}",
2079
+ "created_at": "2010-12-14T08:09:11Z",
2080
+ "updated_at": "2013-03-13T10:05:38Z",
2081
+ "pushed_at": "2011-02-16T07:34:00Z",
2082
+ "git_url": "git://github.com/defunkt/evilbot.git",
2083
+ "ssh_url": "git@github.com:defunkt/evilbot.git",
2084
+ "clone_url": "https://github.com/defunkt/evilbot.git",
2085
+ "svn_url": "https://github.com/defunkt/evilbot",
2086
+ "homepage": "http://convore.com/",
2087
+ "size": 164,
2088
+ "watchers_count": 43,
2089
+ "language": "CoffeeScript",
2090
+ "has_issues": false,
2091
+ "has_downloads": true,
2092
+ "has_wiki": false,
2093
+ "forks_count": 14,
2094
+ "mirror_url": null,
2095
+ "open_issues_count": 2,
2096
+ "forks": 14,
2097
+ "open_issues": 2,
2098
+ "watchers": 43,
2099
+ "master_branch": "master",
2100
+ "default_branch": "master"
2101
+ },
2102
+ {
2103
+ "id": 35,
2104
+ "name": "exception_logger",
2105
+ "full_name": "defunkt/exception_logger",
2106
+ "owner": {
2107
+ "login": "defunkt",
2108
+ "id": 2,
2109
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
2110
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
2111
+ "url": "https://api.github.com/users/defunkt",
2112
+ "html_url": "https://github.com/defunkt",
2113
+ "followers_url": "https://api.github.com/users/defunkt/followers",
2114
+ "following_url": "https://api.github.com/users/defunkt/following",
2115
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
2116
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
2117
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
2118
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
2119
+ "repos_url": "https://api.github.com/users/defunkt/repos",
2120
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
2121
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
2122
+ "type": "User"
2123
+ },
2124
+ "private": false,
2125
+ "html_url": "https://github.com/defunkt/exception_logger",
2126
+ "description": "Unmaintained. Sorry.",
2127
+ "fork": false,
2128
+ "url": "https://api.github.com/repos/defunkt/exception_logger",
2129
+ "forks_url": "https://api.github.com/repos/defunkt/exception_logger/forks",
2130
+ "keys_url": "https://api.github.com/repos/defunkt/exception_logger/keys{/key_id}",
2131
+ "collaborators_url": "https://api.github.com/repos/defunkt/exception_logger/collaborators{/collaborator}",
2132
+ "teams_url": "https://api.github.com/repos/defunkt/exception_logger/teams",
2133
+ "hooks_url": "https://api.github.com/repos/defunkt/exception_logger/hooks",
2134
+ "issue_events_url": "https://api.github.com/repos/defunkt/exception_logger/issues/events{/number}",
2135
+ "events_url": "https://api.github.com/repos/defunkt/exception_logger/events",
2136
+ "assignees_url": "https://api.github.com/repos/defunkt/exception_logger/assignees{/user}",
2137
+ "branches_url": "https://api.github.com/repos/defunkt/exception_logger/branches{/branch}",
2138
+ "tags_url": "https://api.github.com/repos/defunkt/exception_logger/tags{/tag}",
2139
+ "blobs_url": "https://api.github.com/repos/defunkt/exception_logger/git/blobs{/sha}",
2140
+ "git_tags_url": "https://api.github.com/repos/defunkt/exception_logger/git/tags{/sha}",
2141
+ "git_refs_url": "https://api.github.com/repos/defunkt/exception_logger/git/refs{/sha}",
2142
+ "trees_url": "https://api.github.com/repos/defunkt/exception_logger/git/trees{/sha}",
2143
+ "statuses_url": "https://api.github.com/repos/defunkt/exception_logger/statuses/{sha}",
2144
+ "languages_url": "https://api.github.com/repos/defunkt/exception_logger/languages",
2145
+ "stargazers_url": "https://api.github.com/repos/defunkt/exception_logger/stargazers",
2146
+ "contributors_url": "https://api.github.com/repos/defunkt/exception_logger/contributors",
2147
+ "subscribers_url": "https://api.github.com/repos/defunkt/exception_logger/subscribers",
2148
+ "subscription_url": "https://api.github.com/repos/defunkt/exception_logger/subscription",
2149
+ "commits_url": "https://api.github.com/repos/defunkt/exception_logger/commits{/sha}",
2150
+ "git_commits_url": "https://api.github.com/repos/defunkt/exception_logger/git/commits{/sha}",
2151
+ "comments_url": "https://api.github.com/repos/defunkt/exception_logger/comments{/number}",
2152
+ "issue_comment_url": "https://api.github.com/repos/defunkt/exception_logger/issues/comments/{number}",
2153
+ "contents_url": "https://api.github.com/repos/defunkt/exception_logger/contents/{+path}",
2154
+ "compare_url": "https://api.github.com/repos/defunkt/exception_logger/compare/{base}...{head}",
2155
+ "merges_url": "https://api.github.com/repos/defunkt/exception_logger/merges",
2156
+ "archive_url": "https://api.github.com/repos/defunkt/exception_logger/{archive_format}{/ref}",
2157
+ "downloads_url": "https://api.github.com/repos/defunkt/exception_logger/downloads",
2158
+ "issues_url": "https://api.github.com/repos/defunkt/exception_logger/issues{/number}",
2159
+ "pulls_url": "https://api.github.com/repos/defunkt/exception_logger/pulls{/number}",
2160
+ "milestones_url": "https://api.github.com/repos/defunkt/exception_logger/milestones{/number}",
2161
+ "notifications_url": "https://api.github.com/repos/defunkt/exception_logger/notifications{?since,all,participating}",
2162
+ "labels_url": "https://api.github.com/repos/defunkt/exception_logger/labels{/name}",
2163
+ "created_at": "2008-01-14T03:32:19Z",
2164
+ "updated_at": "2013-03-08T15:02:11Z",
2165
+ "pushed_at": "2008-07-23T14:39:54Z",
2166
+ "git_url": "git://github.com/defunkt/exception_logger.git",
2167
+ "ssh_url": "git@github.com:defunkt/exception_logger.git",
2168
+ "clone_url": "https://github.com/defunkt/exception_logger.git",
2169
+ "svn_url": "https://github.com/defunkt/exception_logger",
2170
+ "homepage": "",
2171
+ "size": 84,
2172
+ "watchers_count": 232,
2173
+ "language": "Ruby",
2174
+ "has_issues": false,
2175
+ "has_downloads": false,
2176
+ "has_wiki": false,
2177
+ "forks_count": 78,
2178
+ "mirror_url": null,
2179
+ "open_issues_count": 1,
2180
+ "forks": 78,
2181
+ "open_issues": 1,
2182
+ "watchers": 232,
2183
+ "master_branch": "master",
2184
+ "default_branch": "master"
2185
+ },
2186
+ {
2187
+ "id": 425,
2188
+ "name": "facebox",
2189
+ "full_name": "defunkt/facebox",
2190
+ "owner": {
2191
+ "login": "defunkt",
2192
+ "id": 2,
2193
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
2194
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
2195
+ "url": "https://api.github.com/users/defunkt",
2196
+ "html_url": "https://github.com/defunkt",
2197
+ "followers_url": "https://api.github.com/users/defunkt/followers",
2198
+ "following_url": "https://api.github.com/users/defunkt/following",
2199
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
2200
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
2201
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
2202
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
2203
+ "repos_url": "https://api.github.com/users/defunkt/repos",
2204
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
2205
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
2206
+ "type": "User"
2207
+ },
2208
+ "private": false,
2209
+ "html_url": "https://github.com/defunkt/facebox",
2210
+ "description": "Facebook-style lightbox, built in jQuery",
2211
+ "fork": false,
2212
+ "url": "https://api.github.com/repos/defunkt/facebox",
2213
+ "forks_url": "https://api.github.com/repos/defunkt/facebox/forks",
2214
+ "keys_url": "https://api.github.com/repos/defunkt/facebox/keys{/key_id}",
2215
+ "collaborators_url": "https://api.github.com/repos/defunkt/facebox/collaborators{/collaborator}",
2216
+ "teams_url": "https://api.github.com/repos/defunkt/facebox/teams",
2217
+ "hooks_url": "https://api.github.com/repos/defunkt/facebox/hooks",
2218
+ "issue_events_url": "https://api.github.com/repos/defunkt/facebox/issues/events{/number}",
2219
+ "events_url": "https://api.github.com/repos/defunkt/facebox/events",
2220
+ "assignees_url": "https://api.github.com/repos/defunkt/facebox/assignees{/user}",
2221
+ "branches_url": "https://api.github.com/repos/defunkt/facebox/branches{/branch}",
2222
+ "tags_url": "https://api.github.com/repos/defunkt/facebox/tags{/tag}",
2223
+ "blobs_url": "https://api.github.com/repos/defunkt/facebox/git/blobs{/sha}",
2224
+ "git_tags_url": "https://api.github.com/repos/defunkt/facebox/git/tags{/sha}",
2225
+ "git_refs_url": "https://api.github.com/repos/defunkt/facebox/git/refs{/sha}",
2226
+ "trees_url": "https://api.github.com/repos/defunkt/facebox/git/trees{/sha}",
2227
+ "statuses_url": "https://api.github.com/repos/defunkt/facebox/statuses/{sha}",
2228
+ "languages_url": "https://api.github.com/repos/defunkt/facebox/languages",
2229
+ "stargazers_url": "https://api.github.com/repos/defunkt/facebox/stargazers",
2230
+ "contributors_url": "https://api.github.com/repos/defunkt/facebox/contributors",
2231
+ "subscribers_url": "https://api.github.com/repos/defunkt/facebox/subscribers",
2232
+ "subscription_url": "https://api.github.com/repos/defunkt/facebox/subscription",
2233
+ "commits_url": "https://api.github.com/repos/defunkt/facebox/commits{/sha}",
2234
+ "git_commits_url": "https://api.github.com/repos/defunkt/facebox/git/commits{/sha}",
2235
+ "comments_url": "https://api.github.com/repos/defunkt/facebox/comments{/number}",
2236
+ "issue_comment_url": "https://api.github.com/repos/defunkt/facebox/issues/comments/{number}",
2237
+ "contents_url": "https://api.github.com/repos/defunkt/facebox/contents/{+path}",
2238
+ "compare_url": "https://api.github.com/repos/defunkt/facebox/compare/{base}...{head}",
2239
+ "merges_url": "https://api.github.com/repos/defunkt/facebox/merges",
2240
+ "archive_url": "https://api.github.com/repos/defunkt/facebox/{archive_format}{/ref}",
2241
+ "downloads_url": "https://api.github.com/repos/defunkt/facebox/downloads",
2242
+ "issues_url": "https://api.github.com/repos/defunkt/facebox/issues{/number}",
2243
+ "pulls_url": "https://api.github.com/repos/defunkt/facebox/pulls{/number}",
2244
+ "milestones_url": "https://api.github.com/repos/defunkt/facebox/milestones{/number}",
2245
+ "notifications_url": "https://api.github.com/repos/defunkt/facebox/notifications{?since,all,participating}",
2246
+ "labels_url": "https://api.github.com/repos/defunkt/facebox/labels{/name}",
2247
+ "created_at": "2008-02-11T22:49:27Z",
2248
+ "updated_at": "2013-03-17T16:32:33Z",
2249
+ "pushed_at": "2011-11-02T17:03:05Z",
2250
+ "git_url": "git://github.com/defunkt/facebox.git",
2251
+ "ssh_url": "git@github.com:defunkt/facebox.git",
2252
+ "clone_url": "https://github.com/defunkt/facebox.git",
2253
+ "svn_url": "https://github.com/defunkt/facebox",
2254
+ "homepage": "http://defunkt.io/facebox/",
2255
+ "size": 160,
2256
+ "watchers_count": 1792,
2257
+ "language": "JavaScript",
2258
+ "has_issues": false,
2259
+ "has_downloads": false,
2260
+ "has_wiki": false,
2261
+ "forks_count": 365,
2262
+ "mirror_url": null,
2263
+ "open_issues_count": 30,
2264
+ "forks": 365,
2265
+ "open_issues": 30,
2266
+ "watchers": 1792,
2267
+ "master_branch": "master",
2268
+ "default_branch": "master"
2269
+ },
2270
+ {
2271
+ "id": 5211331,
2272
+ "name": "faceup",
2273
+ "full_name": "defunkt/faceup",
2274
+ "owner": {
2275
+ "login": "defunkt",
2276
+ "id": 2,
2277
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
2278
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
2279
+ "url": "https://api.github.com/users/defunkt",
2280
+ "html_url": "https://github.com/defunkt",
2281
+ "followers_url": "https://api.github.com/users/defunkt/followers",
2282
+ "following_url": "https://api.github.com/users/defunkt/following",
2283
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
2284
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
2285
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
2286
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
2287
+ "repos_url": "https://api.github.com/users/defunkt/repos",
2288
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
2289
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
2290
+ "type": "User"
2291
+ },
2292
+ "private": false,
2293
+ "html_url": "https://github.com/defunkt/faceup",
2294
+ "description": "More than just mustaches.",
2295
+ "fork": true,
2296
+ "url": "https://api.github.com/repos/defunkt/faceup",
2297
+ "forks_url": "https://api.github.com/repos/defunkt/faceup/forks",
2298
+ "keys_url": "https://api.github.com/repos/defunkt/faceup/keys{/key_id}",
2299
+ "collaborators_url": "https://api.github.com/repos/defunkt/faceup/collaborators{/collaborator}",
2300
+ "teams_url": "https://api.github.com/repos/defunkt/faceup/teams",
2301
+ "hooks_url": "https://api.github.com/repos/defunkt/faceup/hooks",
2302
+ "issue_events_url": "https://api.github.com/repos/defunkt/faceup/issues/events{/number}",
2303
+ "events_url": "https://api.github.com/repos/defunkt/faceup/events",
2304
+ "assignees_url": "https://api.github.com/repos/defunkt/faceup/assignees{/user}",
2305
+ "branches_url": "https://api.github.com/repos/defunkt/faceup/branches{/branch}",
2306
+ "tags_url": "https://api.github.com/repos/defunkt/faceup/tags{/tag}",
2307
+ "blobs_url": "https://api.github.com/repos/defunkt/faceup/git/blobs{/sha}",
2308
+ "git_tags_url": "https://api.github.com/repos/defunkt/faceup/git/tags{/sha}",
2309
+ "git_refs_url": "https://api.github.com/repos/defunkt/faceup/git/refs{/sha}",
2310
+ "trees_url": "https://api.github.com/repos/defunkt/faceup/git/trees{/sha}",
2311
+ "statuses_url": "https://api.github.com/repos/defunkt/faceup/statuses/{sha}",
2312
+ "languages_url": "https://api.github.com/repos/defunkt/faceup/languages",
2313
+ "stargazers_url": "https://api.github.com/repos/defunkt/faceup/stargazers",
2314
+ "contributors_url": "https://api.github.com/repos/defunkt/faceup/contributors",
2315
+ "subscribers_url": "https://api.github.com/repos/defunkt/faceup/subscribers",
2316
+ "subscription_url": "https://api.github.com/repos/defunkt/faceup/subscription",
2317
+ "commits_url": "https://api.github.com/repos/defunkt/faceup/commits{/sha}",
2318
+ "git_commits_url": "https://api.github.com/repos/defunkt/faceup/git/commits{/sha}",
2319
+ "comments_url": "https://api.github.com/repos/defunkt/faceup/comments{/number}",
2320
+ "issue_comment_url": "https://api.github.com/repos/defunkt/faceup/issues/comments/{number}",
2321
+ "contents_url": "https://api.github.com/repos/defunkt/faceup/contents/{+path}",
2322
+ "compare_url": "https://api.github.com/repos/defunkt/faceup/compare/{base}...{head}",
2323
+ "merges_url": "https://api.github.com/repos/defunkt/faceup/merges",
2324
+ "archive_url": "https://api.github.com/repos/defunkt/faceup/{archive_format}{/ref}",
2325
+ "downloads_url": "https://api.github.com/repos/defunkt/faceup/downloads",
2326
+ "issues_url": "https://api.github.com/repos/defunkt/faceup/issues{/number}",
2327
+ "pulls_url": "https://api.github.com/repos/defunkt/faceup/pulls{/number}",
2328
+ "milestones_url": "https://api.github.com/repos/defunkt/faceup/milestones{/number}",
2329
+ "notifications_url": "https://api.github.com/repos/defunkt/faceup/notifications{?since,all,participating}",
2330
+ "labels_url": "https://api.github.com/repos/defunkt/faceup/labels{/name}",
2331
+ "created_at": "2012-07-28T02:11:56Z",
2332
+ "updated_at": "2013-02-01T16:58:33Z",
2333
+ "pushed_at": "2012-07-28T02:40:26Z",
2334
+ "git_url": "git://github.com/defunkt/faceup.git",
2335
+ "ssh_url": "git@github.com:defunkt/faceup.git",
2336
+ "clone_url": "https://github.com/defunkt/faceup.git",
2337
+ "svn_url": "https://github.com/defunkt/faceup",
2338
+ "homepage": "http://faceup.me/",
2339
+ "size": 124,
2340
+ "watchers_count": 5,
2341
+ "language": "JavaScript",
2342
+ "has_issues": false,
2343
+ "has_downloads": true,
2344
+ "has_wiki": true,
2345
+ "forks_count": 3,
2346
+ "mirror_url": null,
2347
+ "open_issues_count": 1,
2348
+ "forks": 3,
2349
+ "open_issues": 1,
2350
+ "watchers": 5,
2351
+ "master_branch": "master",
2352
+ "default_branch": "master"
2353
+ },
2354
+ {
2355
+ "id": 213248,
2356
+ "name": "fakefs",
2357
+ "full_name": "defunkt/fakefs",
2358
+ "owner": {
2359
+ "login": "defunkt",
2360
+ "id": 2,
2361
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
2362
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
2363
+ "url": "https://api.github.com/users/defunkt",
2364
+ "html_url": "https://github.com/defunkt",
2365
+ "followers_url": "https://api.github.com/users/defunkt/followers",
2366
+ "following_url": "https://api.github.com/users/defunkt/following",
2367
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
2368
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
2369
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
2370
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
2371
+ "repos_url": "https://api.github.com/users/defunkt/repos",
2372
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
2373
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
2374
+ "type": "User"
2375
+ },
2376
+ "private": false,
2377
+ "html_url": "https://github.com/defunkt/fakefs",
2378
+ "description": "A fake filesystem. Use it in your tests.",
2379
+ "fork": false,
2380
+ "url": "https://api.github.com/repos/defunkt/fakefs",
2381
+ "forks_url": "https://api.github.com/repos/defunkt/fakefs/forks",
2382
+ "keys_url": "https://api.github.com/repos/defunkt/fakefs/keys{/key_id}",
2383
+ "collaborators_url": "https://api.github.com/repos/defunkt/fakefs/collaborators{/collaborator}",
2384
+ "teams_url": "https://api.github.com/repos/defunkt/fakefs/teams",
2385
+ "hooks_url": "https://api.github.com/repos/defunkt/fakefs/hooks",
2386
+ "issue_events_url": "https://api.github.com/repos/defunkt/fakefs/issues/events{/number}",
2387
+ "events_url": "https://api.github.com/repos/defunkt/fakefs/events",
2388
+ "assignees_url": "https://api.github.com/repos/defunkt/fakefs/assignees{/user}",
2389
+ "branches_url": "https://api.github.com/repos/defunkt/fakefs/branches{/branch}",
2390
+ "tags_url": "https://api.github.com/repos/defunkt/fakefs/tags{/tag}",
2391
+ "blobs_url": "https://api.github.com/repos/defunkt/fakefs/git/blobs{/sha}",
2392
+ "git_tags_url": "https://api.github.com/repos/defunkt/fakefs/git/tags{/sha}",
2393
+ "git_refs_url": "https://api.github.com/repos/defunkt/fakefs/git/refs{/sha}",
2394
+ "trees_url": "https://api.github.com/repos/defunkt/fakefs/git/trees{/sha}",
2395
+ "statuses_url": "https://api.github.com/repos/defunkt/fakefs/statuses/{sha}",
2396
+ "languages_url": "https://api.github.com/repos/defunkt/fakefs/languages",
2397
+ "stargazers_url": "https://api.github.com/repos/defunkt/fakefs/stargazers",
2398
+ "contributors_url": "https://api.github.com/repos/defunkt/fakefs/contributors",
2399
+ "subscribers_url": "https://api.github.com/repos/defunkt/fakefs/subscribers",
2400
+ "subscription_url": "https://api.github.com/repos/defunkt/fakefs/subscription",
2401
+ "commits_url": "https://api.github.com/repos/defunkt/fakefs/commits{/sha}",
2402
+ "git_commits_url": "https://api.github.com/repos/defunkt/fakefs/git/commits{/sha}",
2403
+ "comments_url": "https://api.github.com/repos/defunkt/fakefs/comments{/number}",
2404
+ "issue_comment_url": "https://api.github.com/repos/defunkt/fakefs/issues/comments/{number}",
2405
+ "contents_url": "https://api.github.com/repos/defunkt/fakefs/contents/{+path}",
2406
+ "compare_url": "https://api.github.com/repos/defunkt/fakefs/compare/{base}...{head}",
2407
+ "merges_url": "https://api.github.com/repos/defunkt/fakefs/merges",
2408
+ "archive_url": "https://api.github.com/repos/defunkt/fakefs/{archive_format}{/ref}",
2409
+ "downloads_url": "https://api.github.com/repos/defunkt/fakefs/downloads",
2410
+ "issues_url": "https://api.github.com/repos/defunkt/fakefs/issues{/number}",
2411
+ "pulls_url": "https://api.github.com/repos/defunkt/fakefs/pulls{/number}",
2412
+ "milestones_url": "https://api.github.com/repos/defunkt/fakefs/milestones{/number}",
2413
+ "notifications_url": "https://api.github.com/repos/defunkt/fakefs/notifications{?since,all,participating}",
2414
+ "labels_url": "https://api.github.com/repos/defunkt/fakefs/labels{/name}",
2415
+ "created_at": "2009-05-29T08:11:32Z",
2416
+ "updated_at": "2013-03-11T14:23:00Z",
2417
+ "pushed_at": "2013-01-01T00:00:02Z",
2418
+ "git_url": "git://github.com/defunkt/fakefs.git",
2419
+ "ssh_url": "git@github.com:defunkt/fakefs.git",
2420
+ "clone_url": "https://github.com/defunkt/fakefs.git",
2421
+ "svn_url": "https://github.com/defunkt/fakefs",
2422
+ "homepage": "http://defunkt.io/fakefs/",
2423
+ "size": 228,
2424
+ "watchers_count": 507,
2425
+ "language": "Ruby",
2426
+ "has_issues": true,
2427
+ "has_downloads": false,
2428
+ "has_wiki": false,
2429
+ "forks_count": 109,
2430
+ "mirror_url": null,
2431
+ "open_issues_count": 48,
2432
+ "forks": 109,
2433
+ "open_issues": 48,
2434
+ "watchers": 507,
2435
+ "master_branch": "master",
2436
+ "default_branch": "master"
2437
+ },
2438
+ {
2439
+ "id": 3596,
2440
+ "name": "fixture_scenarios_builder",
2441
+ "full_name": "defunkt/fixture_scenarios_builder",
2442
+ "owner": {
2443
+ "login": "defunkt",
2444
+ "id": 2,
2445
+ "avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
2446
+ "gravatar_id": "b8dbb1987e8e5318584865f880036796",
2447
+ "url": "https://api.github.com/users/defunkt",
2448
+ "html_url": "https://github.com/defunkt",
2449
+ "followers_url": "https://api.github.com/users/defunkt/followers",
2450
+ "following_url": "https://api.github.com/users/defunkt/following",
2451
+ "gists_url": "https://api.github.com/users/defunkt/gists{/gist_id}",
2452
+ "starred_url": "https://api.github.com/users/defunkt/starred{/owner}{/repo}",
2453
+ "subscriptions_url": "https://api.github.com/users/defunkt/subscriptions",
2454
+ "organizations_url": "https://api.github.com/users/defunkt/orgs",
2455
+ "repos_url": "https://api.github.com/users/defunkt/repos",
2456
+ "events_url": "https://api.github.com/users/defunkt/events{/privacy}",
2457
+ "received_events_url": "https://api.github.com/users/defunkt/received_events",
2458
+ "type": "User"
2459
+ },
2460
+ "private": false,
2461
+ "html_url": "https://github.com/defunkt/fixture_scenarios_builder",
2462
+ "description": "Build your fixtures in Ruby.",
2463
+ "fork": false,
2464
+ "url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder",
2465
+ "forks_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/forks",
2466
+ "keys_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/keys{/key_id}",
2467
+ "collaborators_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/collaborators{/collaborator}",
2468
+ "teams_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/teams",
2469
+ "hooks_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/hooks",
2470
+ "issue_events_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/issues/events{/number}",
2471
+ "events_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/events",
2472
+ "assignees_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/assignees{/user}",
2473
+ "branches_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/branches{/branch}",
2474
+ "tags_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/tags{/tag}",
2475
+ "blobs_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/git/blobs{/sha}",
2476
+ "git_tags_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/git/tags{/sha}",
2477
+ "git_refs_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/git/refs{/sha}",
2478
+ "trees_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/git/trees{/sha}",
2479
+ "statuses_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/statuses/{sha}",
2480
+ "languages_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/languages",
2481
+ "stargazers_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/stargazers",
2482
+ "contributors_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/contributors",
2483
+ "subscribers_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/subscribers",
2484
+ "subscription_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/subscription",
2485
+ "commits_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/commits{/sha}",
2486
+ "git_commits_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/git/commits{/sha}",
2487
+ "comments_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/comments{/number}",
2488
+ "issue_comment_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/issues/comments/{number}",
2489
+ "contents_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/contents/{+path}",
2490
+ "compare_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/compare/{base}...{head}",
2491
+ "merges_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/merges",
2492
+ "archive_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/{archive_format}{/ref}",
2493
+ "downloads_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/downloads",
2494
+ "issues_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/issues{/number}",
2495
+ "pulls_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/pulls{/number}",
2496
+ "milestones_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/milestones{/number}",
2497
+ "notifications_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/notifications{?since,all,participating}",
2498
+ "labels_url": "https://api.github.com/repos/defunkt/fixture_scenarios_builder/labels{/name}",
2499
+ "created_at": "2008-03-12T06:24:02Z",
2500
+ "updated_at": "2013-02-01T16:58:17Z",
2501
+ "pushed_at": "2008-11-12T22:58:39Z",
2502
+ "git_url": "git://github.com/defunkt/fixture_scenarios_builder.git",
2503
+ "ssh_url": "git@github.com:defunkt/fixture_scenarios_builder.git",
2504
+ "clone_url": "https://github.com/defunkt/fixture_scenarios_builder.git",
2505
+ "svn_url": "https://github.com/defunkt/fixture_scenarios_builder",
2506
+ "homepage": "http://errtheblog.com/posts/61-fixin-fixtures",
2507
+ "size": 96,
2508
+ "watchers_count": 10,
2509
+ "language": "Ruby",
2510
+ "has_issues": true,
2511
+ "has_downloads": true,
2512
+ "has_wiki": true,
2513
+ "forks_count": 3,
2514
+ "mirror_url": null,
2515
+ "open_issues_count": 0,
2516
+ "forks": 3,
2517
+ "open_issues": 0,
2518
+ "watchers": 10,
2519
+ "master_branch": "master",
2520
+ "default_branch": "master"
2521
+ }
2522
+ ]