octokit 1.0.7 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +1 -0
- data/lib/octokit/client.rb +3 -0
- data/lib/octokit/client/gists.rb +66 -0
- data/lib/octokit/gist.rb +27 -0
- data/lib/octokit/version.rb +1 -1
- data/spec/fixtures/timeline.json +1408 -1237
- data/spec/fixtures/v2/blob_metadata.json +2052 -1
- data/spec/fixtures/v2/blobs.json +260 -1
- data/spec/fixtures/v2/issues.json +49 -1
- data/spec/fixtures/v2/network_data.json +3551 -1
- data/spec/fixtures/v2/network_meta.json +2530 -1
- data/spec/fixtures/v2/repositories.json +173 -1
- data/spec/fixtures/v2/tree_metadata.json +2612 -1
- data/spec/fixtures/v2/user.json +19 -1
- data/spec/fixtures/v2/users.json +24 -1
- data/spec/fixtures/v3/blob.json +5 -5
- data/spec/fixtures/v3/branches.json +14 -14
- data/spec/fixtures/v3/collaborators.json +60 -60
- data/spec/fixtures/v3/comment.json +12 -12
- data/spec/fixtures/v3/comments.json +41 -41
- data/spec/fixtures/v3/commit.json +50 -1
- data/spec/fixtures/v3/commit_comment.json +17 -17
- data/spec/fixtures/v3/commit_comments.json +76 -76
- data/spec/fixtures/v3/commits.json +1414 -1
- data/spec/fixtures/v3/contributors.json +889 -889
- data/spec/fixtures/v3/download.json +9 -9
- data/spec/fixtures/v3/downloads.json +33 -33
- data/spec/fixtures/v3/emails.json +3 -3
- data/spec/fixtures/v3/followers.json +210 -210
- data/spec/fixtures/v3/following.json +207 -207
- data/spec/fixtures/v3/forks.json +870 -870
- data/spec/fixtures/v3/gist.json +51 -0
- data/spec/fixtures/v3/gists.json +548 -0
- data/spec/fixtures/v3/issue.json +33 -35
- data/spec/fixtures/v3/issue_closed.json +34 -36
- data/spec/fixtures/v3/issue_event.json +40 -42
- data/spec/fixtures/v3/issue_events.json +70 -70
- data/spec/fixtures/v3/issues.json +1559 -1577
- data/spec/fixtures/v3/label.json +3 -3
- data/spec/fixtures/v3/labels.json +15 -15
- data/spec/fixtures/v3/languages.json +3 -3
- data/spec/fixtures/v3/list_commit_comments.json +570 -570
- data/spec/fixtures/v3/milestone.json +9 -10
- data/spec/fixtures/v3/milestones.json +25 -25
- data/spec/fixtures/v3/not_found.json +1 -1
- data/spec/fixtures/v3/organization-repositories.json +4290 -4290
- data/spec/fixtures/v3/organization-repository.json +41 -41
- data/spec/fixtures/v3/organization.json +16 -16
- data/spec/fixtures/v3/organization_members.json +574 -574
- data/spec/fixtures/v3/organization_team_members.json +14 -14
- data/spec/fixtures/v3/organization_team_repos.json +60 -60
- data/spec/fixtures/v3/organizations.json +42 -42
- data/spec/fixtures/v3/public_events.json +1101 -1107
- data/spec/fixtures/v3/public_gists.json +968 -0
- data/spec/fixtures/v3/public_key.json +3 -3
- data/spec/fixtures/v3/public_keys.json +5 -5
- data/spec/fixtures/v3/pull_created.json +134 -134
- data/spec/fixtures/v3/pull_request.json +134 -134
- data/spec/fixtures/v3/pull_requests.json +185 -185
- data/spec/fixtures/v3/repo_events.json +1644 -1660
- data/spec/fixtures/v3/repo_issues_events.json +127 -133
- data/spec/fixtures/v3/repositories.json +871 -871
- data/spec/fixtures/v3/repository.json +33 -33
- data/spec/fixtures/v3/starred_gists.json +30 -0
- data/spec/fixtures/v3/tags.json +171 -171
- data/spec/fixtures/v3/team.json +6 -6
- data/spec/fixtures/v3/teams.json +10 -10
- data/spec/fixtures/v3/tree.json +110 -110
- data/spec/fixtures/v3/user.json +18 -18
- data/spec/fixtures/v3/user_events.json +99 -100
- data/spec/fixtures/v3/watched.json +1020 -1020
- data/spec/fixtures/v3/watchers.json +180 -180
- data/spec/octokit/client/gists_spec.rb +133 -0
- data/spec/octokit/gist_spec.rb +49 -0
- metadata +40 -26
@@ -1,209 +1,209 @@
|
|
1
1
|
[
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
2
|
+
{
|
3
|
+
"avatar_url": "https://secure.gravatar.com/avatar/30f39a09e233e8369dddf6feb4be0308?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
4
|
+
"id": 4223,
|
5
|
+
"login": "rails",
|
6
|
+
"url": "https://api.github.com/orgs/rails"
|
7
|
+
},
|
8
|
+
{
|
9
|
+
"avatar_url": "https://secure.gravatar.com/avatar/6d8ca4feec71d59cc926a9bfb8fd3869?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
10
|
+
"gravatar_id": "6d8ca4feec71d59cc926a9bfb8fd3869",
|
11
|
+
"id": 9763,
|
12
|
+
"login": "puls",
|
13
|
+
"url": "https://api.github.com/users/puls"
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"avatar_url": "https://secure.gravatar.com/avatar/428167a3ec72235ba971162924492609?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
17
|
+
"gravatar_id": "428167a3ec72235ba971162924492609",
|
18
|
+
"id": 4,
|
19
|
+
"login": "wycats",
|
20
|
+
"url": "https://api.github.com/users/wycats"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"avatar_url": "https://secure.gravatar.com/avatar/ed9635566b34ade32274f510f0f9a6d2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
24
|
+
"gravatar_id": "ed9635566b34ade32274f510f0f9a6d2",
|
25
|
+
"id": 2741,
|
26
|
+
"login": "dhh",
|
27
|
+
"url": "https://api.github.com/users/dhh"
|
28
|
+
},
|
29
|
+
{
|
30
|
+
"avatar_url": "https://secure.gravatar.com/avatar/df3d720b0387da4124961d1de6622632?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
31
|
+
"gravatar_id": "df3d720b0387da4124961d1de6622632",
|
32
|
+
"id": 12213,
|
33
|
+
"login": "jm3",
|
34
|
+
"url": "https://api.github.com/users/jm3"
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"avatar_url": "https://secure.gravatar.com/avatar/9f0f89bbd9e1ecfbaab6584e429b7a2f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
38
|
+
"gravatar_id": "9f0f89bbd9e1ecfbaab6584e429b7a2f",
|
39
|
+
"id": 156,
|
40
|
+
"login": "joshsusser",
|
41
|
+
"url": "https://api.github.com/users/joshsusser"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"avatar_url": "https://secure.gravatar.com/avatar/d9914cfbec64060f4053fc221a2a7536?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
45
|
+
"gravatar_id": "d9914cfbec64060f4053fc221a2a7536",
|
46
|
+
"id": 699,
|
47
|
+
"login": "nkallen",
|
48
|
+
"url": "https://api.github.com/users/nkallen"
|
49
|
+
},
|
50
|
+
{
|
51
|
+
"avatar_url": "https://secure.gravatar.com/avatar/821395fe70906c8290df7f18ac4ac6cf?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
52
|
+
"gravatar_id": "821395fe70906c8290df7f18ac4ac6cf",
|
53
|
+
"id": 21,
|
54
|
+
"login": "technoweenie",
|
55
|
+
"url": "https://api.github.com/users/technoweenie"
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"avatar_url": "https://secure.gravatar.com/avatar/fa273befbb36b0323044fcf035b7ee39?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
59
|
+
"gravatar_id": "fa273befbb36b0323044fcf035b7ee39",
|
60
|
+
"id": 9954,
|
61
|
+
"login": "blaine",
|
62
|
+
"url": "https://api.github.com/users/blaine"
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"avatar_url": "https://secure.gravatar.com/avatar/3fcb27e39d2ff47357a803e91347fee4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
66
|
+
"gravatar_id": "3fcb27e39d2ff47357a803e91347fee4",
|
67
|
+
"id": 152,
|
68
|
+
"login": "al3x",
|
69
|
+
"url": "https://api.github.com/users/al3x"
|
70
|
+
},
|
71
|
+
{
|
72
|
+
"avatar_url": "https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
73
|
+
"gravatar_id": "b8dbb1987e8e5318584865f880036796",
|
74
|
+
"id": 2,
|
75
|
+
"login": "defunkt",
|
76
|
+
"url": "https://api.github.com/users/defunkt"
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"avatar_url": "https://secure.gravatar.com/avatar/9375a9529679f1b42b567a640d775e7d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
80
|
+
"gravatar_id": "9375a9529679f1b42b567a640d775e7d",
|
81
|
+
"id": 70,
|
82
|
+
"login": "schacon",
|
83
|
+
"url": "https://api.github.com/users/schacon"
|
84
|
+
},
|
85
|
+
{
|
86
|
+
"avatar_url": "https://secure.gravatar.com/avatar/1a250566b475961b9b36abf359950c76?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
87
|
+
"gravatar_id": "1a250566b475961b9b36abf359950c76",
|
88
|
+
"id": 46,
|
89
|
+
"login": "bmizerany",
|
90
|
+
"url": "https://api.github.com/users/bmizerany"
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"avatar_url": "https://secure.gravatar.com/avatar/abfc88b96ae18c85ba7aac3bded2ec5e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
94
|
+
"gravatar_id": "abfc88b96ae18c85ba7aac3bded2ec5e",
|
95
|
+
"id": 404,
|
96
|
+
"login": "rtomayko",
|
97
|
+
"url": "https://api.github.com/users/rtomayko"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"avatar_url": "https://secure.gravatar.com/avatar/7c9a9a0dabb231717d63b20413988157?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
101
|
+
"gravatar_id": "7c9a9a0dabb231717d63b20413988157",
|
102
|
+
"id": 86957,
|
103
|
+
"login": "jpr5",
|
104
|
+
"url": "https://api.github.com/users/jpr5"
|
105
|
+
},
|
106
|
+
{
|
107
|
+
"avatar_url": "https://secure.gravatar.com/avatar/64fec2287666363ff9697ea37f0c3412?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
108
|
+
"gravatar_id": "64fec2287666363ff9697ea37f0c3412",
|
109
|
+
"id": 20953,
|
110
|
+
"login": "lholden",
|
111
|
+
"url": "https://api.github.com/users/lholden"
|
112
|
+
},
|
113
|
+
{
|
114
|
+
"avatar_url": "https://secure.gravatar.com/avatar/ae3f4aeecd2b103e1782c6df87211f98?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
115
|
+
"id": 100502,
|
116
|
+
"login": "140proof",
|
117
|
+
"url": "https://api.github.com/orgs/140proof"
|
118
|
+
},
|
119
|
+
{
|
120
|
+
"avatar_url": "https://secure.gravatar.com/avatar/074d18f816c0eef8468da7cde2d81dcd?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
121
|
+
"gravatar_id": "074d18f816c0eef8468da7cde2d81dcd",
|
122
|
+
"id": 59267,
|
123
|
+
"login": "kanevski",
|
124
|
+
"url": "https://api.github.com/users/kanevski"
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"avatar_url": "https://secure.gravatar.com/avatar/d1c067780d4e27fd72212543162c7053?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
128
|
+
"id": 76794,
|
129
|
+
"login": "carlhuda",
|
130
|
+
"url": "https://api.github.com/orgs/carlhuda"
|
131
|
+
},
|
132
|
+
{
|
133
|
+
"avatar_url": "https://secure.gravatar.com/avatar/da5274b27cc6c0f505495bf5d504575d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
134
|
+
"gravatar_id": "da5274b27cc6c0f505495bf5d504575d",
|
135
|
+
"id": 6180,
|
136
|
+
"login": "carllerche",
|
137
|
+
"url": "https://api.github.com/users/carllerche"
|
138
|
+
},
|
139
|
+
{
|
140
|
+
"avatar_url": "https://secure.gravatar.com/avatar/e13c31390e0369fcd5972292ce0e7b92?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
141
|
+
"gravatar_id": "e13c31390e0369fcd5972292ce0e7b92",
|
142
|
+
"id": 235,
|
143
|
+
"login": "jnunemaker",
|
144
|
+
"url": "https://api.github.com/users/jnunemaker"
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"avatar_url": "https://secure.gravatar.com/avatar/bbe5dc8dcf248706525ab76f46185520?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
148
|
+
"gravatar_id": "bbe5dc8dcf248706525ab76f46185520",
|
149
|
+
"id": 137,
|
150
|
+
"login": "josh",
|
151
|
+
"url": "https://api.github.com/users/josh"
|
152
|
+
},
|
153
|
+
{
|
154
|
+
"avatar_url": "https://secure.gravatar.com/avatar/1b0913ce73ee61d8305608037bcc4a0a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
155
|
+
"gravatar_id": "1b0913ce73ee61d8305608037bcc4a0a",
|
156
|
+
"id": 279,
|
157
|
+
"login": "hoverbird",
|
158
|
+
"url": "https://api.github.com/users/hoverbird"
|
159
|
+
},
|
160
|
+
{
|
161
|
+
"avatar_url": "https://secure.gravatar.com/avatar/7f67a350859f0ab846c91afa1f66cc4f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
162
|
+
"gravatar_id": "7f67a350859f0ab846c91afa1f66cc4f",
|
163
|
+
"id": 1903,
|
164
|
+
"login": "jamiew",
|
165
|
+
"url": "https://api.github.com/users/jamiew"
|
166
|
+
},
|
167
|
+
{
|
168
|
+
"avatar_url": "https://secure.gravatar.com/avatar/f183bcc4176b308c9edabe79299e448f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
169
|
+
"gravatar_id": "f183bcc4176b308c9edabe79299e448f",
|
170
|
+
"id": 3846,
|
171
|
+
"login": "jeremyevans",
|
172
|
+
"url": "https://api.github.com/users/jeremyevans"
|
173
|
+
},
|
174
|
+
{
|
175
|
+
"avatar_url": "https://secure.gravatar.com/avatar/535d73db0b47b6f745e9981e80dabdb4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
176
|
+
"gravatar_id": "535d73db0b47b6f745e9981e80dabdb4",
|
177
|
+
"id": 19,
|
178
|
+
"login": "brynary",
|
179
|
+
"url": "https://api.github.com/users/brynary"
|
180
|
+
},
|
181
|
+
{
|
182
|
+
"avatar_url": "https://secure.gravatar.com/avatar/a0b49382b6dcd9dd4602c3088717724e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
183
|
+
"gravatar_id": "a0b49382b6dcd9dd4602c3088717724e",
|
184
|
+
"id": 45,
|
185
|
+
"login": "mojodna",
|
186
|
+
"url": "https://api.github.com/users/mojodna"
|
187
|
+
},
|
188
|
+
{
|
189
|
+
"avatar_url": "https://secure.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
190
|
+
"gravatar_id": "25c7c18223fb42a4c6ae1c8db6f50f9b",
|
191
|
+
"id": 1,
|
192
|
+
"login": "mojombo",
|
193
|
+
"url": "https://api.github.com/users/mojombo"
|
194
|
+
},
|
195
|
+
{
|
196
|
+
"avatar_url": "https://secure.gravatar.com/avatar/c7e2ce5b40f683dfb6c1bdf5e6af0c72?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
197
|
+
"gravatar_id": "c7e2ce5b40f683dfb6c1bdf5e6af0c72",
|
198
|
+
"id": 8898,
|
199
|
+
"login": "joshbuddy",
|
200
|
+
"url": "https://api.github.com/users/joshbuddy"
|
201
|
+
},
|
202
|
+
{
|
203
|
+
"avatar_url": "https://secure.gravatar.com/avatar/a17f0025641b4be419a6cd3845e55dd2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
204
|
+
"gravatar_id": "a17f0025641b4be419a6cd3845e55dd2",
|
205
|
+
"id": 10652,
|
206
|
+
"login": "igrigorik",
|
207
|
+
"url": "https://api.github.com/users/igrigorik"
|
208
|
+
}
|
209
209
|
]
|
data/spec/fixtures/v3/forks.json
CHANGED
@@ -1,872 +1,872 @@
|
|
1
1
|
[
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
2
|
+
{
|
3
|
+
"clone_url": "https://github.com/digx/rails_admin.git",
|
4
|
+
"created_at": "2010-08-10T16:20:19Z",
|
5
|
+
"description": "RailsAdmin",
|
6
|
+
"fork": true,
|
7
|
+
"forks": 1,
|
8
|
+
"git_url": "git://github.com/digx/rails_admin.git",
|
9
|
+
"homepage": "",
|
10
|
+
"html_url": "https://github.com/digx/rails_admin",
|
11
|
+
"id": 829065,
|
12
|
+
"language": "Ruby",
|
13
|
+
"master_branch": null,
|
14
|
+
"name": "rails_admin",
|
15
|
+
"open_issues": 0,
|
16
|
+
"owner": {
|
17
|
+
"avatar_url": "https://secure.gravatar.com/avatar/debde181b3a5925bb347193b7568de6d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
18
|
+
"id": 1114,
|
19
|
+
"login": "digx",
|
20
|
+
"url": "https://api.github.com/users/digx"
|
21
|
+
},
|
22
|
+
"private": false,
|
23
|
+
"pushed_at": "2011-07-23T17:04:45Z",
|
24
|
+
"size": 104,
|
25
|
+
"ssh_url": "git@github.com:digx/rails_admin.git",
|
26
|
+
"svn_url": "https://svn.github.com/digx/rails_admin",
|
27
|
+
"updated_at": "2011-07-23T17:04:45Z",
|
28
|
+
"url": "https://api.github.com/repos/digx/rails_admin",
|
29
|
+
"watchers": 1
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"clone_url": "https://github.com/galuto/rails_admin.git",
|
33
|
+
"created_at": "2010-08-27T22:15:27Z",
|
34
|
+
"description": "RailsAdmin",
|
35
|
+
"fork": true,
|
36
|
+
"forks": 1,
|
37
|
+
"git_url": "git://github.com/galuto/rails_admin.git",
|
38
|
+
"homepage": "",
|
39
|
+
"html_url": "https://github.com/galuto/rails_admin",
|
40
|
+
"id": 867349,
|
41
|
+
"language": null,
|
42
|
+
"master_branch": null,
|
43
|
+
"name": "rails_admin",
|
44
|
+
"open_issues": 0,
|
45
|
+
"owner": {
|
46
|
+
"avatar_url": "https://secure.gravatar.com/avatar/e7a8287a95384365aebea228018e450b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
47
|
+
"id": 105954,
|
48
|
+
"login": "galuto",
|
49
|
+
"url": "https://api.github.com/users/galuto"
|
50
|
+
},
|
51
|
+
"private": false,
|
52
|
+
"pushed_at": "2010-08-27T16:17:03Z",
|
53
|
+
"size": 4132,
|
54
|
+
"ssh_url": "git@github.com:galuto/rails_admin.git",
|
55
|
+
"svn_url": "https://svn.github.com/galuto/rails_admin",
|
56
|
+
"updated_at": "2010-09-02T23:33:57Z",
|
57
|
+
"url": "https://api.github.com/repos/galuto/rails_admin",
|
58
|
+
"watchers": 1
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"clone_url": "https://github.com/lucasts/rails_admin.git",
|
62
|
+
"created_at": "2010-09-03T02:12:40Z",
|
63
|
+
"description": "RailsAdmin",
|
64
|
+
"fork": true,
|
65
|
+
"forks": 1,
|
66
|
+
"git_url": "git://github.com/lucasts/rails_admin.git",
|
67
|
+
"homepage": "",
|
68
|
+
"html_url": "https://github.com/lucasts/rails_admin",
|
69
|
+
"id": 884820,
|
70
|
+
"language": "Ruby",
|
71
|
+
"master_branch": null,
|
72
|
+
"name": "rails_admin",
|
73
|
+
"open_issues": 0,
|
74
|
+
"owner": {
|
75
|
+
"avatar_url": "https://secure.gravatar.com/avatar/2a03308b3abcbb395a2825cfe3d5f710?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
76
|
+
"id": 6397,
|
77
|
+
"login": "lucasts",
|
78
|
+
"url": "https://api.github.com/users/lucasts"
|
79
|
+
},
|
80
|
+
"private": false,
|
81
|
+
"pushed_at": "2011-03-10T20:45:30Z",
|
82
|
+
"size": 100,
|
83
|
+
"ssh_url": "git@github.com:lucasts/rails_admin.git",
|
84
|
+
"svn_url": "https://svn.github.com/lucasts/rails_admin",
|
85
|
+
"updated_at": "2011-03-10T20:45:32Z",
|
86
|
+
"url": "https://api.github.com/repos/lucasts/rails_admin",
|
87
|
+
"watchers": 1
|
88
|
+
},
|
89
|
+
{
|
90
|
+
"clone_url": "https://github.com/drogus/rails_admin.git",
|
91
|
+
"created_at": "2010-09-06T12:34:47Z",
|
92
|
+
"description": "RailsAdmin",
|
93
|
+
"fork": true,
|
94
|
+
"forks": 1,
|
95
|
+
"git_url": "git://github.com/drogus/rails_admin.git",
|
96
|
+
"homepage": "",
|
97
|
+
"html_url": "https://github.com/drogus/rails_admin",
|
98
|
+
"id": 891223,
|
99
|
+
"language": null,
|
100
|
+
"master_branch": null,
|
101
|
+
"name": "rails_admin",
|
102
|
+
"open_issues": 0,
|
103
|
+
"owner": {
|
104
|
+
"avatar_url": "https://secure.gravatar.com/avatar/582034b63279abeaa8e76acf12f5ee30?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
105
|
+
"id": 5004,
|
106
|
+
"login": "drogus",
|
107
|
+
"url": "https://api.github.com/users/drogus"
|
108
|
+
},
|
109
|
+
"private": false,
|
110
|
+
"pushed_at": "2010-09-21T20:33:31Z",
|
111
|
+
"size": 2144,
|
112
|
+
"ssh_url": "git@github.com:drogus/rails_admin.git",
|
113
|
+
"svn_url": "https://svn.github.com/drogus/rails_admin",
|
114
|
+
"updated_at": "2010-09-21T20:33:31Z",
|
115
|
+
"url": "https://api.github.com/repos/drogus/rails_admin",
|
116
|
+
"watchers": 4
|
117
|
+
},
|
118
|
+
{
|
119
|
+
"clone_url": "https://github.com/kaapa/rails_admin.git",
|
120
|
+
"created_at": "2010-09-08T21:45:43Z",
|
121
|
+
"description": "RailsAdmin",
|
122
|
+
"fork": true,
|
123
|
+
"forks": 1,
|
124
|
+
"git_url": "git://github.com/kaapa/rails_admin.git",
|
125
|
+
"homepage": "",
|
126
|
+
"html_url": "https://github.com/kaapa/rails_admin",
|
127
|
+
"id": 897274,
|
128
|
+
"language": "Ruby",
|
129
|
+
"master_branch": null,
|
130
|
+
"name": "rails_admin",
|
131
|
+
"open_issues": 0,
|
132
|
+
"owner": {
|
133
|
+
"avatar_url": "https://secure.gravatar.com/avatar/40a0afa49eb7b12db4dcda70b2e1520d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
134
|
+
"id": 215071,
|
135
|
+
"login": "kaapa",
|
136
|
+
"url": "https://api.github.com/users/kaapa"
|
137
|
+
},
|
138
|
+
"private": false,
|
139
|
+
"pushed_at": "2011-07-15T19:13:25Z",
|
140
|
+
"size": 148,
|
141
|
+
"ssh_url": "git@github.com:kaapa/rails_admin.git",
|
142
|
+
"svn_url": "https://svn.github.com/kaapa/rails_admin",
|
143
|
+
"updated_at": "2011-07-15T19:13:26Z",
|
144
|
+
"url": "https://api.github.com/repos/kaapa/rails_admin",
|
145
|
+
"watchers": 2
|
146
|
+
},
|
147
|
+
{
|
148
|
+
"clone_url": "https://github.com/myabc/rails_admin.git",
|
149
|
+
"created_at": "2010-09-10T11:34:57Z",
|
150
|
+
"description": "RailsAdmin",
|
151
|
+
"fork": true,
|
152
|
+
"forks": 1,
|
153
|
+
"git_url": "git://github.com/myabc/rails_admin.git",
|
154
|
+
"homepage": "",
|
155
|
+
"html_url": "https://github.com/myabc/rails_admin",
|
156
|
+
"id": 901133,
|
157
|
+
"language": null,
|
158
|
+
"master_branch": null,
|
159
|
+
"name": "rails_admin",
|
160
|
+
"open_issues": 0,
|
161
|
+
"owner": {
|
162
|
+
"avatar_url": "https://secure.gravatar.com/avatar/f08aeb02079e7f486b270e4ed094f638?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
163
|
+
"id": 755,
|
164
|
+
"login": "myabc",
|
165
|
+
"url": "https://api.github.com/users/myabc"
|
166
|
+
},
|
167
|
+
"private": false,
|
168
|
+
"pushed_at": "2010-09-09T05:23:40Z",
|
169
|
+
"size": 6820,
|
170
|
+
"ssh_url": "git@github.com:myabc/rails_admin.git",
|
171
|
+
"svn_url": "https://svn.github.com/myabc/rails_admin",
|
172
|
+
"updated_at": "2010-09-10T11:34:57Z",
|
173
|
+
"url": "https://api.github.com/repos/myabc/rails_admin",
|
174
|
+
"watchers": 1
|
175
|
+
},
|
176
|
+
{
|
177
|
+
"clone_url": "https://github.com/hassox/rails_admin.git",
|
178
|
+
"created_at": "2010-09-14T10:05:52Z",
|
179
|
+
"description": "RailsAdmin",
|
180
|
+
"fork": true,
|
181
|
+
"forks": 0,
|
182
|
+
"git_url": "git://github.com/hassox/rails_admin.git",
|
183
|
+
"homepage": "",
|
184
|
+
"html_url": "https://github.com/hassox/rails_admin",
|
185
|
+
"id": 909547,
|
186
|
+
"language": "Ruby",
|
187
|
+
"master_branch": null,
|
188
|
+
"name": "rails_admin",
|
189
|
+
"open_issues": 0,
|
190
|
+
"owner": {
|
191
|
+
"avatar_url": "https://secure.gravatar.com/avatar/9d1f5d2d9de70bd9a934f557dc95a406?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
192
|
+
"id": 104,
|
193
|
+
"login": "hassox",
|
194
|
+
"url": "https://api.github.com/users/hassox"
|
195
|
+
},
|
196
|
+
"private": false,
|
197
|
+
"pushed_at": "2010-09-23T03:27:31Z",
|
198
|
+
"size": 3484,
|
199
|
+
"ssh_url": "git@github.com:hassox/rails_admin.git",
|
200
|
+
"svn_url": "https://svn.github.com/hassox/rails_admin",
|
201
|
+
"updated_at": "2011-01-19T15:50:22Z",
|
202
|
+
"url": "https://api.github.com/repos/hassox/rails_admin",
|
203
|
+
"watchers": 4
|
204
|
+
},
|
205
|
+
{
|
206
|
+
"clone_url": "https://github.com/jackdempsey/rails_admin.git",
|
207
|
+
"created_at": "2010-09-17T22:53:26Z",
|
208
|
+
"description": "RailsAdmin",
|
209
|
+
"fork": true,
|
210
|
+
"forks": 0,
|
211
|
+
"git_url": "git://github.com/jackdempsey/rails_admin.git",
|
212
|
+
"homepage": "",
|
213
|
+
"html_url": "https://github.com/jackdempsey/rails_admin",
|
214
|
+
"id": 919631,
|
215
|
+
"language": null,
|
216
|
+
"master_branch": null,
|
217
|
+
"name": "rails_admin",
|
218
|
+
"open_issues": 0,
|
219
|
+
"owner": {
|
220
|
+
"avatar_url": "https://secure.gravatar.com/avatar/1ccb5123d1af92e24b32cec62abcf9a8?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
221
|
+
"id": 479,
|
222
|
+
"login": "jackdempsey",
|
223
|
+
"url": "https://api.github.com/users/jackdempsey"
|
224
|
+
},
|
225
|
+
"private": false,
|
226
|
+
"pushed_at": "2010-12-14T02:56:27Z",
|
227
|
+
"size": 112,
|
228
|
+
"ssh_url": "git@github.com:jackdempsey/rails_admin.git",
|
229
|
+
"svn_url": "https://svn.github.com/jackdempsey/rails_admin",
|
230
|
+
"updated_at": "2010-12-14T02:56:28Z",
|
231
|
+
"url": "https://api.github.com/repos/jackdempsey/rails_admin",
|
232
|
+
"watchers": 1
|
233
|
+
},
|
234
|
+
{
|
235
|
+
"clone_url": "https://github.com/rafaalves/rails_admin.git",
|
236
|
+
"created_at": "2010-09-28T15:40:42Z",
|
237
|
+
"description": "RailsAdmin",
|
238
|
+
"fork": true,
|
239
|
+
"forks": 0,
|
240
|
+
"git_url": "git://github.com/rafaalves/rails_admin.git",
|
241
|
+
"homepage": "",
|
242
|
+
"html_url": "https://github.com/rafaalves/rails_admin",
|
243
|
+
"id": 945875,
|
244
|
+
"language": null,
|
245
|
+
"master_branch": null,
|
246
|
+
"name": "rails_admin",
|
247
|
+
"open_issues": 0,
|
248
|
+
"owner": {
|
249
|
+
"avatar_url": "https://secure.gravatar.com/avatar/4b4896a5854c33c9941ca032bca9b306?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
250
|
+
"id": 414399,
|
251
|
+
"login": "rafaalves",
|
252
|
+
"url": "https://api.github.com/users/rafaalves"
|
253
|
+
},
|
254
|
+
"private": false,
|
255
|
+
"pushed_at": "2010-09-27T17:59:30Z",
|
256
|
+
"size": 1528,
|
257
|
+
"ssh_url": "git@github.com:rafaalves/rails_admin.git",
|
258
|
+
"svn_url": "https://svn.github.com/rafaalves/rails_admin",
|
259
|
+
"updated_at": "2010-09-28T15:40:42Z",
|
260
|
+
"url": "https://api.github.com/repos/rafaalves/rails_admin",
|
261
|
+
"watchers": 1
|
262
|
+
},
|
263
|
+
{
|
264
|
+
"clone_url": "https://github.com/alanmeira/rails_admin.git",
|
265
|
+
"created_at": "2010-09-29T19:02:34Z",
|
266
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
267
|
+
"fork": true,
|
268
|
+
"forks": 0,
|
269
|
+
"git_url": "git://github.com/alanmeira/rails_admin.git",
|
270
|
+
"homepage": "",
|
271
|
+
"html_url": "https://github.com/alanmeira/rails_admin",
|
272
|
+
"id": 949190,
|
273
|
+
"language": null,
|
274
|
+
"master_branch": null,
|
275
|
+
"name": "rails_admin",
|
276
|
+
"open_issues": 0,
|
277
|
+
"owner": {
|
278
|
+
"avatar_url": "https://secure.gravatar.com/avatar/fb071530998c76e29c7c9b5de7fbe030?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
279
|
+
"id": 33952,
|
280
|
+
"login": "alanmeira",
|
281
|
+
"url": "https://api.github.com/users/alanmeira"
|
282
|
+
},
|
283
|
+
"private": false,
|
284
|
+
"pushed_at": "2010-09-27T17:59:30Z",
|
285
|
+
"size": 1528,
|
286
|
+
"ssh_url": "git@github.com:alanmeira/rails_admin.git",
|
287
|
+
"svn_url": "https://svn.github.com/alanmeira/rails_admin",
|
288
|
+
"updated_at": "2010-09-29T19:02:34Z",
|
289
|
+
"url": "https://api.github.com/repos/alanmeira/rails_admin",
|
290
|
+
"watchers": 1
|
291
|
+
},
|
292
|
+
{
|
293
|
+
"clone_url": "https://github.com/mks0101/rails_admin.git",
|
294
|
+
"created_at": "2010-09-29T21:52:46Z",
|
295
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
296
|
+
"fork": true,
|
297
|
+
"forks": 0,
|
298
|
+
"git_url": "git://github.com/mks0101/rails_admin.git",
|
299
|
+
"homepage": "",
|
300
|
+
"html_url": "https://github.com/mks0101/rails_admin",
|
301
|
+
"id": 949625,
|
302
|
+
"language": null,
|
303
|
+
"master_branch": null,
|
304
|
+
"name": "rails_admin",
|
305
|
+
"open_issues": 0,
|
306
|
+
"owner": {
|
307
|
+
"avatar_url": "https://secure.gravatar.com/avatar/adb70006daebcd154f35c72b9a17b342?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
308
|
+
"id": 148364,
|
309
|
+
"login": "mks0101",
|
310
|
+
"url": "https://api.github.com/users/mks0101"
|
311
|
+
},
|
312
|
+
"private": false,
|
313
|
+
"pushed_at": "2010-09-27T17:59:30Z",
|
314
|
+
"size": 1528,
|
315
|
+
"ssh_url": "git@github.com:mks0101/rails_admin.git",
|
316
|
+
"svn_url": "https://svn.github.com/mks0101/rails_admin",
|
317
|
+
"updated_at": "2010-09-29T21:52:46Z",
|
318
|
+
"url": "https://api.github.com/repos/mks0101/rails_admin",
|
319
|
+
"watchers": 1
|
320
|
+
},
|
321
|
+
{
|
322
|
+
"clone_url": "https://github.com/hoelmer/rails_admin.git",
|
323
|
+
"created_at": "2010-10-01T13:56:36Z",
|
324
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
325
|
+
"fork": true,
|
326
|
+
"forks": 0,
|
327
|
+
"git_url": "git://github.com/hoelmer/rails_admin.git",
|
328
|
+
"homepage": "",
|
329
|
+
"html_url": "https://github.com/hoelmer/rails_admin",
|
330
|
+
"id": 954291,
|
331
|
+
"language": null,
|
332
|
+
"master_branch": null,
|
333
|
+
"name": "rails_admin",
|
334
|
+
"open_issues": 0,
|
335
|
+
"owner": {
|
336
|
+
"avatar_url": "https://secure.gravatar.com/avatar/62730e5a855160928795d718864d9512?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
337
|
+
"id": 14165,
|
338
|
+
"login": "hoelmer",
|
339
|
+
"url": "https://api.github.com/users/hoelmer"
|
340
|
+
},
|
341
|
+
"private": false,
|
342
|
+
"pushed_at": "2010-10-01T16:17:37Z",
|
343
|
+
"size": 1440,
|
344
|
+
"ssh_url": "git@github.com:hoelmer/rails_admin.git",
|
345
|
+
"svn_url": "https://svn.github.com/hoelmer/rails_admin",
|
346
|
+
"updated_at": "2010-10-01T16:17:43Z",
|
347
|
+
"url": "https://api.github.com/repos/hoelmer/rails_admin",
|
348
|
+
"watchers": 1
|
349
|
+
},
|
350
|
+
{
|
351
|
+
"clone_url": "https://github.com/matheusca/rails_admin.git",
|
352
|
+
"created_at": "2010-10-05T00:41:04Z",
|
353
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
354
|
+
"fork": true,
|
355
|
+
"forks": 0,
|
356
|
+
"git_url": "git://github.com/matheusca/rails_admin.git",
|
357
|
+
"homepage": "",
|
358
|
+
"html_url": "https://github.com/matheusca/rails_admin",
|
359
|
+
"id": 962253,
|
360
|
+
"language": null,
|
361
|
+
"master_branch": null,
|
362
|
+
"name": "rails_admin",
|
363
|
+
"open_issues": 0,
|
364
|
+
"owner": {
|
365
|
+
"avatar_url": "https://secure.gravatar.com/avatar/43a468d6010a4e07c1ba0d2f0ffb3fc4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
366
|
+
"id": 34628,
|
367
|
+
"login": "matheusca",
|
368
|
+
"url": "https://api.github.com/users/matheusca"
|
369
|
+
},
|
370
|
+
"private": false,
|
371
|
+
"pushed_at": "2010-10-05T00:43:02Z",
|
372
|
+
"size": 1320,
|
373
|
+
"ssh_url": "git@github.com:matheusca/rails_admin.git",
|
374
|
+
"svn_url": "https://svn.github.com/matheusca/rails_admin",
|
375
|
+
"updated_at": "2010-10-05T00:43:04Z",
|
376
|
+
"url": "https://api.github.com/repos/matheusca/rails_admin",
|
377
|
+
"watchers": 1
|
378
|
+
},
|
379
|
+
{
|
380
|
+
"clone_url": "https://github.com/robertd/rails_admin.git",
|
381
|
+
"created_at": "2010-10-07T15:14:16Z",
|
382
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
383
|
+
"fork": true,
|
384
|
+
"forks": 0,
|
385
|
+
"git_url": "git://github.com/robertd/rails_admin.git",
|
386
|
+
"homepage": "",
|
387
|
+
"html_url": "https://github.com/robertd/rails_admin",
|
388
|
+
"id": 969564,
|
389
|
+
"language": null,
|
390
|
+
"master_branch": null,
|
391
|
+
"name": "rails_admin",
|
392
|
+
"open_issues": 0,
|
393
|
+
"owner": {
|
394
|
+
"avatar_url": "https://secure.gravatar.com/avatar/62163a6feec1e8798bbd778cca690e50?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
395
|
+
"id": 31543,
|
396
|
+
"login": "robertd",
|
397
|
+
"url": "https://api.github.com/users/robertd"
|
398
|
+
},
|
399
|
+
"private": false,
|
400
|
+
"pushed_at": "2010-10-07T03:07:01Z",
|
401
|
+
"size": 2736,
|
402
|
+
"ssh_url": "git@github.com:robertd/rails_admin.git",
|
403
|
+
"svn_url": "https://svn.github.com/robertd/rails_admin",
|
404
|
+
"updated_at": "2010-10-07T15:14:16Z",
|
405
|
+
"url": "https://api.github.com/repos/robertd/rails_admin",
|
406
|
+
"watchers": 1
|
407
|
+
},
|
408
|
+
{
|
409
|
+
"clone_url": "https://github.com/pilhofer/rails_admin.git",
|
410
|
+
"created_at": "2010-10-14T20:01:18Z",
|
411
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
412
|
+
"fork": true,
|
413
|
+
"forks": 0,
|
414
|
+
"git_url": "git://github.com/pilhofer/rails_admin.git",
|
415
|
+
"homepage": "",
|
416
|
+
"html_url": "https://github.com/pilhofer/rails_admin",
|
417
|
+
"id": 988021,
|
418
|
+
"language": null,
|
419
|
+
"master_branch": null,
|
420
|
+
"name": "rails_admin",
|
421
|
+
"open_issues": 0,
|
422
|
+
"owner": {
|
423
|
+
"avatar_url": "https://secure.gravatar.com/avatar/43598e6db581b539afb14f5aa5f4d13a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
424
|
+
"id": 2039,
|
425
|
+
"login": "pilhofer",
|
426
|
+
"url": "https://api.github.com/users/pilhofer"
|
427
|
+
},
|
428
|
+
"private": false,
|
429
|
+
"pushed_at": "2010-10-12T01:10:31Z",
|
430
|
+
"size": 3192,
|
431
|
+
"ssh_url": "git@github.com:pilhofer/rails_admin.git",
|
432
|
+
"svn_url": "https://svn.github.com/pilhofer/rails_admin",
|
433
|
+
"updated_at": "2010-10-14T20:01:18Z",
|
434
|
+
"url": "https://api.github.com/repos/pilhofer/rails_admin",
|
435
|
+
"watchers": 1
|
436
|
+
},
|
437
|
+
{
|
438
|
+
"clone_url": "https://github.com/ccabot/rails_admin.git",
|
439
|
+
"created_at": "2010-11-03T21:58:44Z",
|
440
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
441
|
+
"fork": true,
|
442
|
+
"forks": 0,
|
443
|
+
"git_url": "git://github.com/ccabot/rails_admin.git",
|
444
|
+
"homepage": "",
|
445
|
+
"html_url": "https://github.com/ccabot/rails_admin",
|
446
|
+
"id": 1049357,
|
447
|
+
"language": "Ruby",
|
448
|
+
"master_branch": null,
|
449
|
+
"name": "rails_admin",
|
450
|
+
"open_issues": 0,
|
451
|
+
"owner": {
|
452
|
+
"avatar_url": "https://secure.gravatar.com/avatar/6d246f2dde05095bebd3ba3cb54c676a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
453
|
+
"id": 331883,
|
454
|
+
"login": "ccabot",
|
455
|
+
"url": "https://api.github.com/users/ccabot"
|
456
|
+
},
|
457
|
+
"private": false,
|
458
|
+
"pushed_at": "2011-05-20T12:28:16Z",
|
459
|
+
"size": 2652,
|
460
|
+
"ssh_url": "git@github.com:ccabot/rails_admin.git",
|
461
|
+
"svn_url": "https://svn.github.com/ccabot/rails_admin",
|
462
|
+
"updated_at": "2011-05-20T12:28:16Z",
|
463
|
+
"url": "https://api.github.com/repos/ccabot/rails_admin",
|
464
|
+
"watchers": 1
|
465
|
+
},
|
466
|
+
{
|
467
|
+
"clone_url": "https://github.com/dianakimball/rails_admin.git",
|
468
|
+
"created_at": "2010-11-08T01:29:34Z",
|
469
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
470
|
+
"fork": true,
|
471
|
+
"forks": 0,
|
472
|
+
"git_url": "git://github.com/dianakimball/rails_admin.git",
|
473
|
+
"homepage": "",
|
474
|
+
"html_url": "https://github.com/dianakimball/rails_admin",
|
475
|
+
"id": 1060593,
|
476
|
+
"language": null,
|
477
|
+
"master_branch": null,
|
478
|
+
"name": "rails_admin",
|
479
|
+
"open_issues": 0,
|
480
|
+
"owner": {
|
481
|
+
"avatar_url": "https://secure.gravatar.com/avatar/974dfefd383e9a95d65da3400df373e6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
482
|
+
"id": 153317,
|
483
|
+
"login": "dianakimball",
|
484
|
+
"url": "https://api.github.com/users/dianakimball"
|
485
|
+
},
|
486
|
+
"private": false,
|
487
|
+
"pushed_at": "2010-11-08T02:18:55Z",
|
488
|
+
"size": 1576,
|
489
|
+
"ssh_url": "git@github.com:dianakimball/rails_admin.git",
|
490
|
+
"svn_url": "https://svn.github.com/dianakimball/rails_admin",
|
491
|
+
"updated_at": "2010-11-08T02:18:55Z",
|
492
|
+
"url": "https://api.github.com/repos/dianakimball/rails_admin",
|
493
|
+
"watchers": 1
|
494
|
+
},
|
495
|
+
{
|
496
|
+
"clone_url": "https://github.com/foca/rails_admin.git",
|
497
|
+
"created_at": "2010-11-10T19:09:10Z",
|
498
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
499
|
+
"fork": true,
|
500
|
+
"forks": 0,
|
501
|
+
"git_url": "git://github.com/foca/rails_admin.git",
|
502
|
+
"homepage": "",
|
503
|
+
"html_url": "https://github.com/foca/rails_admin",
|
504
|
+
"id": 1069217,
|
505
|
+
"language": "Ruby",
|
506
|
+
"master_branch": null,
|
507
|
+
"name": "rails_admin",
|
508
|
+
"open_issues": 0,
|
509
|
+
"owner": {
|
510
|
+
"avatar_url": "https://secure.gravatar.com/avatar/e2eac01661fd490189a527b41c81a91c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
511
|
+
"id": 437,
|
512
|
+
"login": "foca",
|
513
|
+
"url": "https://api.github.com/users/foca"
|
514
|
+
},
|
515
|
+
"private": false,
|
516
|
+
"pushed_at": "2010-11-11T18:48:49Z",
|
517
|
+
"size": 1648,
|
518
|
+
"ssh_url": "git@github.com:foca/rails_admin.git",
|
519
|
+
"svn_url": "https://svn.github.com/foca/rails_admin",
|
520
|
+
"updated_at": "2011-04-21T11:51:54Z",
|
521
|
+
"url": "https://api.github.com/repos/foca/rails_admin",
|
522
|
+
"watchers": 2
|
523
|
+
},
|
524
|
+
{
|
525
|
+
"clone_url": "https://github.com/shaug/rails_admin.git",
|
526
|
+
"created_at": "2010-11-15T05:42:43Z",
|
527
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
528
|
+
"fork": true,
|
529
|
+
"forks": 0,
|
530
|
+
"git_url": "git://github.com/shaug/rails_admin.git",
|
531
|
+
"homepage": "",
|
532
|
+
"html_url": "https://github.com/shaug/rails_admin",
|
533
|
+
"id": 1081073,
|
534
|
+
"language": null,
|
535
|
+
"master_branch": null,
|
536
|
+
"name": "rails_admin",
|
537
|
+
"open_issues": 0,
|
538
|
+
"owner": {
|
539
|
+
"avatar_url": "https://secure.gravatar.com/avatar/9734b53e526b163b8e8ee61208bdd55d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
540
|
+
"id": 52272,
|
541
|
+
"login": "shaug",
|
542
|
+
"url": "https://api.github.com/users/shaug"
|
543
|
+
},
|
544
|
+
"private": false,
|
545
|
+
"pushed_at": "2010-11-13T13:24:25Z",
|
546
|
+
"size": 6792,
|
547
|
+
"ssh_url": "git@github.com:shaug/rails_admin.git",
|
548
|
+
"svn_url": "https://svn.github.com/shaug/rails_admin",
|
549
|
+
"updated_at": "2010-11-15T05:42:43Z",
|
550
|
+
"url": "https://api.github.com/repos/shaug/rails_admin",
|
551
|
+
"watchers": 1
|
552
|
+
},
|
553
|
+
{
|
554
|
+
"clone_url": "https://github.com/rainly/rails_admin.git",
|
555
|
+
"created_at": "2010-11-22T09:22:27Z",
|
556
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
557
|
+
"fork": true,
|
558
|
+
"forks": 0,
|
559
|
+
"git_url": "git://github.com/rainly/rails_admin.git",
|
560
|
+
"homepage": "",
|
561
|
+
"html_url": "https://github.com/rainly/rails_admin",
|
562
|
+
"id": 1101860,
|
563
|
+
"language": null,
|
564
|
+
"master_branch": null,
|
565
|
+
"name": "rails_admin",
|
566
|
+
"open_issues": 0,
|
567
|
+
"owner": {
|
568
|
+
"avatar_url": "https://secure.gravatar.com/avatar/f478ac115b3cce89edf6c95502b99373?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
569
|
+
"id": 251791,
|
570
|
+
"login": "rainly",
|
571
|
+
"url": "https://api.github.com/users/rainly"
|
572
|
+
},
|
573
|
+
"private": false,
|
574
|
+
"pushed_at": "2010-11-21T16:43:40Z",
|
575
|
+
"size": 8212,
|
576
|
+
"ssh_url": "git@github.com:rainly/rails_admin.git",
|
577
|
+
"svn_url": "https://svn.github.com/rainly/rails_admin",
|
578
|
+
"updated_at": "2010-11-22T09:22:27Z",
|
579
|
+
"url": "https://api.github.com/repos/rainly/rails_admin",
|
580
|
+
"watchers": 1
|
581
|
+
},
|
582
|
+
{
|
583
|
+
"clone_url": "https://github.com/baldowl/rails_admin.git",
|
584
|
+
"created_at": "2010-11-25T09:35:09Z",
|
585
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
586
|
+
"fork": true,
|
587
|
+
"forks": 0,
|
588
|
+
"git_url": "git://github.com/baldowl/rails_admin.git",
|
589
|
+
"homepage": "",
|
590
|
+
"html_url": "https://github.com/baldowl/rails_admin",
|
591
|
+
"id": 1111623,
|
592
|
+
"language": "JavaScript",
|
593
|
+
"master_branch": null,
|
594
|
+
"name": "rails_admin",
|
595
|
+
"open_issues": 0,
|
596
|
+
"owner": {
|
597
|
+
"avatar_url": "https://secure.gravatar.com/avatar/4a7070e4dc250fc62726d0de31cc33cb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
598
|
+
"id": 16362,
|
599
|
+
"login": "baldowl",
|
600
|
+
"url": "https://api.github.com/users/baldowl"
|
601
|
+
},
|
602
|
+
"private": false,
|
603
|
+
"pushed_at": "2011-04-06T06:22:10Z",
|
604
|
+
"size": 208,
|
605
|
+
"ssh_url": "git@github.com:baldowl/rails_admin.git",
|
606
|
+
"svn_url": "https://svn.github.com/baldowl/rails_admin",
|
607
|
+
"updated_at": "2011-04-06T06:22:10Z",
|
608
|
+
"url": "https://api.github.com/repos/baldowl/rails_admin",
|
609
|
+
"watchers": 1
|
610
|
+
},
|
611
|
+
{
|
612
|
+
"clone_url": "https://github.com/kavu/rails_admin.git",
|
613
|
+
"created_at": "2010-11-29T10:53:45Z",
|
614
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
615
|
+
"fork": true,
|
616
|
+
"forks": 0,
|
617
|
+
"git_url": "git://github.com/kavu/rails_admin.git",
|
618
|
+
"homepage": "",
|
619
|
+
"html_url": "https://github.com/kavu/rails_admin",
|
620
|
+
"id": 1121848,
|
621
|
+
"language": null,
|
622
|
+
"master_branch": null,
|
623
|
+
"name": "rails_admin",
|
624
|
+
"open_issues": 0,
|
625
|
+
"owner": {
|
626
|
+
"avatar_url": "https://secure.gravatar.com/avatar/aafc4ed0d6bdebb23074438a1c2717f1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
627
|
+
"id": 1994,
|
628
|
+
"login": "kavu",
|
629
|
+
"url": "https://api.github.com/users/kavu"
|
630
|
+
},
|
631
|
+
"private": false,
|
632
|
+
"pushed_at": "2010-12-08T11:46:18Z",
|
633
|
+
"size": 1724,
|
634
|
+
"ssh_url": "git@github.com:kavu/rails_admin.git",
|
635
|
+
"svn_url": "https://svn.github.com/kavu/rails_admin",
|
636
|
+
"updated_at": "2010-12-08T11:46:18Z",
|
637
|
+
"url": "https://api.github.com/repos/kavu/rails_admin",
|
638
|
+
"watchers": 1
|
639
|
+
},
|
640
|
+
{
|
641
|
+
"clone_url": "https://github.com/slawosz/rails_admin.git",
|
642
|
+
"created_at": "2010-11-29T14:58:20Z",
|
643
|
+
"description": "my fork, original description: RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
644
|
+
"fork": true,
|
645
|
+
"forks": 0,
|
646
|
+
"git_url": "git://github.com/slawosz/rails_admin.git",
|
647
|
+
"homepage": "",
|
648
|
+
"html_url": "https://github.com/slawosz/rails_admin",
|
649
|
+
"id": 1122374,
|
650
|
+
"language": "Ruby",
|
651
|
+
"master_branch": null,
|
652
|
+
"name": "rails_admin",
|
653
|
+
"open_issues": 0,
|
654
|
+
"owner": {
|
655
|
+
"avatar_url": "https://secure.gravatar.com/avatar/c544188078900e5d5976689949177f11?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
656
|
+
"id": 11747,
|
657
|
+
"login": "slawosz",
|
658
|
+
"url": "https://api.github.com/users/slawosz"
|
659
|
+
},
|
660
|
+
"private": false,
|
661
|
+
"pushed_at": "2011-04-13T16:43:01Z",
|
662
|
+
"size": 2548,
|
663
|
+
"ssh_url": "git@github.com:slawosz/rails_admin.git",
|
664
|
+
"svn_url": "https://svn.github.com/slawosz/rails_admin",
|
665
|
+
"updated_at": "2011-04-13T16:44:35Z",
|
666
|
+
"url": "https://api.github.com/repos/slawosz/rails_admin",
|
667
|
+
"watchers": 2
|
668
|
+
},
|
669
|
+
{
|
670
|
+
"clone_url": "https://github.com/dinhhai/rails_admin.git",
|
671
|
+
"created_at": "2010-11-30T04:17:25Z",
|
672
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
673
|
+
"fork": true,
|
674
|
+
"forks": 0,
|
675
|
+
"git_url": "git://github.com/dinhhai/rails_admin.git",
|
676
|
+
"homepage": "",
|
677
|
+
"html_url": "https://github.com/dinhhai/rails_admin",
|
678
|
+
"id": 1124474,
|
679
|
+
"language": "Ruby",
|
680
|
+
"master_branch": null,
|
681
|
+
"name": "rails_admin",
|
682
|
+
"open_issues": 0,
|
683
|
+
"owner": {
|
684
|
+
"avatar_url": "https://secure.gravatar.com/avatar/f26f523b2a1f73c94f329fa2ec9790e5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
685
|
+
"id": 35376,
|
686
|
+
"login": "dinhhai",
|
687
|
+
"url": "https://api.github.com/users/dinhhai"
|
688
|
+
},
|
689
|
+
"private": false,
|
690
|
+
"pushed_at": "2010-11-29T23:36:22Z",
|
691
|
+
"size": 8788,
|
692
|
+
"ssh_url": "git@github.com:dinhhai/rails_admin.git",
|
693
|
+
"svn_url": "https://svn.github.com/dinhhai/rails_admin",
|
694
|
+
"updated_at": "2011-08-16T07:58:42Z",
|
695
|
+
"url": "https://api.github.com/repos/dinhhai/rails_admin",
|
696
|
+
"watchers": 1
|
697
|
+
},
|
698
|
+
{
|
699
|
+
"clone_url": "https://github.com/federomero/rails_admin.git",
|
700
|
+
"created_at": "2010-12-08T04:09:09Z",
|
701
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
702
|
+
"fork": true,
|
703
|
+
"forks": 0,
|
704
|
+
"git_url": "git://github.com/federomero/rails_admin.git",
|
705
|
+
"homepage": "",
|
706
|
+
"html_url": "https://github.com/federomero/rails_admin",
|
707
|
+
"id": 1148760,
|
708
|
+
"language": null,
|
709
|
+
"master_branch": null,
|
710
|
+
"name": "rails_admin",
|
711
|
+
"open_issues": 0,
|
712
|
+
"owner": {
|
713
|
+
"avatar_url": "https://secure.gravatar.com/avatar/0394b2629cfc78b22094268973c57bf4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
714
|
+
"id": 104881,
|
715
|
+
"login": "federomero",
|
716
|
+
"url": "https://api.github.com/users/federomero"
|
717
|
+
},
|
718
|
+
"private": false,
|
719
|
+
"pushed_at": "2010-12-13T22:40:38Z",
|
720
|
+
"size": 156,
|
721
|
+
"ssh_url": "git@github.com:federomero/rails_admin.git",
|
722
|
+
"svn_url": "https://svn.github.com/federomero/rails_admin",
|
723
|
+
"updated_at": "2010-12-13T22:40:41Z",
|
724
|
+
"url": "https://api.github.com/repos/federomero/rails_admin",
|
725
|
+
"watchers": 1
|
726
|
+
},
|
727
|
+
{
|
728
|
+
"clone_url": "https://github.com/grigio/rails_admin.git",
|
729
|
+
"created_at": "2010-12-08T21:21:14Z",
|
730
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
731
|
+
"fork": true,
|
732
|
+
"forks": 0,
|
733
|
+
"git_url": "git://github.com/grigio/rails_admin.git",
|
734
|
+
"homepage": "",
|
735
|
+
"html_url": "https://github.com/grigio/rails_admin",
|
736
|
+
"id": 1151022,
|
737
|
+
"language": null,
|
738
|
+
"master_branch": null,
|
739
|
+
"name": "rails_admin",
|
740
|
+
"open_issues": 0,
|
741
|
+
"owner": {
|
742
|
+
"avatar_url": "https://secure.gravatar.com/avatar/a1bc8563b294df7078d1ce3d634f5d17?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
743
|
+
"id": 8074,
|
744
|
+
"login": "grigio",
|
745
|
+
"url": "https://api.github.com/users/grigio"
|
746
|
+
},
|
747
|
+
"private": false,
|
748
|
+
"pushed_at": "2010-12-05T18:09:29Z",
|
749
|
+
"size": 212,
|
750
|
+
"ssh_url": "git@github.com:grigio/rails_admin.git",
|
751
|
+
"svn_url": "https://svn.github.com/grigio/rails_admin",
|
752
|
+
"updated_at": "2010-12-08T21:21:14Z",
|
753
|
+
"url": "https://api.github.com/repos/grigio/rails_admin",
|
754
|
+
"watchers": 1
|
755
|
+
},
|
756
|
+
{
|
757
|
+
"clone_url": "https://github.com/sbusso/rails_admin.git",
|
758
|
+
"created_at": "2010-12-09T13:53:01Z",
|
759
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
760
|
+
"fork": true,
|
761
|
+
"forks": 0,
|
762
|
+
"git_url": "git://github.com/sbusso/rails_admin.git",
|
763
|
+
"homepage": "",
|
764
|
+
"html_url": "https://github.com/sbusso/rails_admin",
|
765
|
+
"id": 1153224,
|
766
|
+
"language": null,
|
767
|
+
"master_branch": null,
|
768
|
+
"name": "rails_admin",
|
769
|
+
"open_issues": 0,
|
770
|
+
"owner": {
|
771
|
+
"avatar_url": "https://secure.gravatar.com/avatar/4db25e36d95dc0d07830cdc91bbb87e3?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
772
|
+
"id": 346,
|
773
|
+
"login": "sbusso",
|
774
|
+
"url": "https://api.github.com/users/sbusso"
|
775
|
+
},
|
776
|
+
"private": false,
|
777
|
+
"pushed_at": "2010-12-09T02:58:56Z",
|
778
|
+
"size": 760,
|
779
|
+
"ssh_url": "git@github.com:sbusso/rails_admin.git",
|
780
|
+
"svn_url": "https://svn.github.com/sbusso/rails_admin",
|
781
|
+
"updated_at": "2010-12-09T13:53:01Z",
|
782
|
+
"url": "https://api.github.com/repos/sbusso/rails_admin",
|
783
|
+
"watchers": 1
|
784
|
+
},
|
785
|
+
{
|
786
|
+
"clone_url": "https://github.com/base16soft/rails_admin.git",
|
787
|
+
"created_at": "2010-12-13T18:02:58Z",
|
788
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
789
|
+
"fork": true,
|
790
|
+
"forks": 0,
|
791
|
+
"git_url": "git://github.com/base16soft/rails_admin.git",
|
792
|
+
"homepage": "",
|
793
|
+
"html_url": "https://github.com/base16soft/rails_admin",
|
794
|
+
"id": 1165407,
|
795
|
+
"language": null,
|
796
|
+
"master_branch": null,
|
797
|
+
"name": "rails_admin",
|
798
|
+
"open_issues": 0,
|
799
|
+
"owner": {
|
800
|
+
"avatar_url": "https://secure.gravatar.com/avatar/5a2b66f7af60686094907ef06eab866e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
801
|
+
"id": 113600,
|
802
|
+
"login": "base16soft",
|
803
|
+
"url": "https://api.github.com/users/base16soft"
|
804
|
+
},
|
805
|
+
"private": false,
|
806
|
+
"pushed_at": "2010-12-13T07:11:30Z",
|
807
|
+
"size": 916,
|
808
|
+
"ssh_url": "git@github.com:base16soft/rails_admin.git",
|
809
|
+
"svn_url": "https://svn.github.com/base16soft/rails_admin",
|
810
|
+
"updated_at": "2010-12-13T18:02:59Z",
|
811
|
+
"url": "https://api.github.com/repos/base16soft/rails_admin",
|
812
|
+
"watchers": 1
|
813
|
+
},
|
814
|
+
{
|
815
|
+
"clone_url": "https://github.com/jeroenvandijk/rails_admin.git",
|
816
|
+
"created_at": "2010-12-15T16:40:59Z",
|
817
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
818
|
+
"fork": true,
|
819
|
+
"forks": 0,
|
820
|
+
"git_url": "git://github.com/jeroenvandijk/rails_admin.git",
|
821
|
+
"homepage": "",
|
822
|
+
"html_url": "https://github.com/jeroenvandijk/rails_admin",
|
823
|
+
"id": 1171636,
|
824
|
+
"language": null,
|
825
|
+
"master_branch": null,
|
826
|
+
"name": "rails_admin",
|
827
|
+
"open_issues": 0,
|
828
|
+
"owner": {
|
829
|
+
"avatar_url": "https://secure.gravatar.com/avatar/3e626f6013805e96a95e999fc691b21f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
830
|
+
"id": 27645,
|
831
|
+
"login": "jeroenvandijk",
|
832
|
+
"url": "https://api.github.com/users/jeroenvandijk"
|
833
|
+
},
|
834
|
+
"private": false,
|
835
|
+
"pushed_at": "2010-12-16T11:31:39Z",
|
836
|
+
"size": 1148,
|
837
|
+
"ssh_url": "git@github.com:jeroenvandijk/rails_admin.git",
|
838
|
+
"svn_url": "https://svn.github.com/jeroenvandijk/rails_admin",
|
839
|
+
"updated_at": "2010-12-16T11:31:40Z",
|
840
|
+
"url": "https://api.github.com/repos/jeroenvandijk/rails_admin",
|
841
|
+
"watchers": 1
|
842
|
+
},
|
843
|
+
{
|
844
|
+
"clone_url": "https://github.com/josal/rails_admin.git",
|
845
|
+
"created_at": "2010-12-16T10:27:24Z",
|
846
|
+
"description": "RailsAdmin is a Rails 3 engine that provides an easy-to-use interface for managing your data",
|
847
|
+
"fork": true,
|
848
|
+
"forks": 0,
|
849
|
+
"git_url": "git://github.com/josal/rails_admin.git",
|
850
|
+
"homepage": "",
|
851
|
+
"html_url": "https://github.com/josal/rails_admin",
|
852
|
+
"id": 1173767,
|
853
|
+
"language": null,
|
854
|
+
"master_branch": null,
|
855
|
+
"name": "rails_admin",
|
856
|
+
"open_issues": 0,
|
857
|
+
"owner": {
|
858
|
+
"avatar_url": "https://secure.gravatar.com/avatar/76e9e1970df2a928a1c8ba19d748d5ff?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png",
|
859
|
+
"id": 88265,
|
860
|
+
"login": "josal",
|
861
|
+
"url": "https://api.github.com/users/josal"
|
862
|
+
},
|
863
|
+
"private": false,
|
864
|
+
"pushed_at": "2010-12-16T02:31:58Z",
|
865
|
+
"size": 1264,
|
866
|
+
"ssh_url": "git@github.com:josal/rails_admin.git",
|
867
|
+
"svn_url": "https://svn.github.com/josal/rails_admin",
|
868
|
+
"updated_at": "2010-12-16T10:27:24Z",
|
869
|
+
"url": "https://api.github.com/repos/josal/rails_admin",
|
870
|
+
"watchers": 1
|
871
|
+
}
|
872
872
|
]
|