bimble 0.0.1 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. checksums.yaml +8 -8
  2. data/.travis.yml +3 -1
  3. data/CHANGELOG.md +9 -0
  4. data/README.md +10 -2
  5. data/Rakefile +4 -0
  6. data/bimble.gemspec +5 -2
  7. data/bin/bimble +11 -0
  8. data/bin/{generate_oauth_token.rb → generate_github_oauth_token} +0 -0
  9. data/lib/bimble.rb +16 -3
  10. data/lib/bimble/bundler.rb +9 -0
  11. data/lib/bimble/factory.rb +12 -0
  12. data/lib/bimble/git_strategy/clone.rb +40 -0
  13. data/lib/bimble/git_strategy/github_api.rb +57 -0
  14. data/lib/bimble/helpers/github.rb +99 -0
  15. data/lib/bimble/helpers/strings.rb +19 -0
  16. data/lib/bimble/helpers/updater.rb +14 -0
  17. data/lib/bimble/version.rb +1 -1
  18. data/spec/cassettes/Bimble_GitStrategy_GithubApi/should_be_able_to_create_a_new_blob.yml +73 -0
  19. data/spec/cassettes/Bimble_GitStrategy_GithubApi/should_be_able_to_create_a_new_branch_for_a_commit.yml +73 -0
  20. data/spec/cassettes/Bimble_GitStrategy_GithubApi/should_be_able_to_create_a_new_commit_from_a_tree.yml +215 -0
  21. data/spec/cassettes/Bimble_GitStrategy_GithubApi/should_be_able_to_create_a_tree_with_the_new_blob_in_it_given_a_filename.yml +211 -0
  22. data/spec/cassettes/Bimble_GitStrategy_GithubApi/should_be_able_to_fetch_the_default_branch_for_a_repo.yml +72 -0
  23. data/spec/cassettes/Bimble_GitStrategy_GithubApi/should_be_able_to_get_a_blob_sha_for_a_file_on_a_branch.yml +72 -0
  24. data/spec/cassettes/Bimble_GitStrategy_GithubApi/should_be_able_to_get_a_blob_sha_for_files_matching_a_regex_on_a_branch.yml +72 -0
  25. data/spec/cassettes/Bimble_GitStrategy_GithubApi/should_be_able_to_get_a_blob_sha_for_files_matching_a_regexp_on_a_branch.yml +72 -0
  26. data/spec/cassettes/Bimble_GitStrategy_GithubApi/should_be_able_to_get_latest_commit_SHA_on_a_branch.yml +73 -0
  27. data/spec/cassettes/Bimble_GitStrategy_GithubApi/should_be_able_to_get_the_content_of_the_Gemfile_blob.yml +70 -0
  28. data/spec/cassettes/Bimble_GitStrategy_GithubApi/should_be_able_to_open_a_pull_request_back_to_the_default_branch.yml +76 -0
  29. data/spec/cassettes/Bimble_GitStrategy_GithubApi/should_be_able_to_update_Gemfile_lock_and_open_PR_all_in_one_go.yml +567 -0
  30. data/spec/cassettes/github_api_strategy/should_get_all_appropriate_files.yml +342 -0
  31. data/spec/git_strategy_spec.rb +26 -0
  32. data/spec/github_api_spec.rb +70 -0
  33. data/spec/spec_helper.rb +15 -6
  34. metadata +88 -8
  35. data/bin/bimble.rb +0 -52
@@ -0,0 +1,567 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.github.com/repos/Floppy/bimble-test/git/blobs?access_token=<GITHUB_OAUTH_TOKEN>
6
+ body:
7
+ encoding: UTF-8
8
+ string: "{\"content\":\"new content\",\"encoding\":\"utf-8\"}"
9
+ headers:
10
+ Accept:
11
+ - application/vnd.github.v3+json,application/vnd.github.beta+json;q=0.5,application/json;q=0.1
12
+ Accept-Charset:
13
+ - utf-8
14
+ User-Agent:
15
+ - Github Ruby Gem 0.11.3
16
+ Content-Type:
17
+ - application/json
18
+ Authorization:
19
+ - Token token="<GITHUB_OAUTH_TOKEN>"
20
+ Accept-Encoding:
21
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
+ response:
23
+ status:
24
+ code: 201
25
+ message: Created
26
+ headers:
27
+ Server:
28
+ - GitHub.com
29
+ Date:
30
+ - Fri, 14 Mar 2014 14:00:16 GMT
31
+ Content-Type:
32
+ - application/json; charset=utf-8
33
+ Status:
34
+ - 201 Created
35
+ X-Ratelimit-Limit:
36
+ - '5000'
37
+ X-Ratelimit-Remaining:
38
+ - '4805'
39
+ X-Ratelimit-Reset:
40
+ - '1394809216'
41
+ Cache-Control:
42
+ - private, max-age=60, s-maxage=60
43
+ Etag:
44
+ - "\"296ef275fbcd0dd9a2f183e18843eed4\""
45
+ X-Oauth-Scopes:
46
+ - repo
47
+ X-Accepted-Oauth-Scopes:
48
+ - ''
49
+ Location:
50
+ - https://api.github.com/repos/Floppy/bimble-test/git/blobs/47d2739ba2c34690248c8f91b84bb54e8936899a
51
+ Vary:
52
+ - Accept, Authorization, Cookie, X-GitHub-OTP
53
+ X-Github-Media-Type:
54
+ - github.v3; format=json
55
+ X-Content-Type-Options:
56
+ - nosniff
57
+ Content-Length:
58
+ - '157'
59
+ Access-Control-Allow-Credentials:
60
+ - 'true'
61
+ Access-Control-Expose-Headers:
62
+ - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
63
+ X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
64
+ Access-Control-Allow-Origin:
65
+ - "*"
66
+ X-Github-Request-Id:
67
+ - 519F8646:0ED9:1642B5D:53230B6F
68
+ body:
69
+ encoding: UTF-8
70
+ string: "{\"sha\":\"47d2739ba2c34690248c8f91b84bb54e8936899a\",\"url\":\"https://api.github.com/repos/Floppy/bimble-test/git/blobs/47d2739ba2c34690248c8f91b84bb54e8936899a\"}"
71
+ http_version:
72
+ recorded_at: Fri, 14 Mar 2014 14:00:18 GMT
73
+ - request:
74
+ method: get
75
+ uri: https://api.github.com/repos/Floppy/bimble-test?access_token=<GITHUB_OAUTH_TOKEN>
76
+ body:
77
+ encoding: US-ASCII
78
+ string: ''
79
+ headers:
80
+ Accept:
81
+ - application/vnd.github.v3+json,application/vnd.github.beta+json;q=0.5,application/json;q=0.1
82
+ Accept-Charset:
83
+ - utf-8
84
+ User-Agent:
85
+ - Github Ruby Gem 0.11.3
86
+ Authorization:
87
+ - Token token="<GITHUB_OAUTH_TOKEN>"
88
+ Accept-Encoding:
89
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
90
+ response:
91
+ status:
92
+ code: 200
93
+ message: OK
94
+ headers:
95
+ Server:
96
+ - GitHub.com
97
+ Date:
98
+ - Fri, 14 Mar 2014 14:00:16 GMT
99
+ Content-Type:
100
+ - application/json; charset=utf-8
101
+ Transfer-Encoding:
102
+ - chunked
103
+ Status:
104
+ - 200 OK
105
+ X-Ratelimit-Limit:
106
+ - '5000'
107
+ X-Ratelimit-Remaining:
108
+ - '4804'
109
+ X-Ratelimit-Reset:
110
+ - '1394809216'
111
+ Cache-Control:
112
+ - private, max-age=60, s-maxage=60
113
+ Last-Modified:
114
+ - Fri, 14 Mar 2014 13:58:02 GMT
115
+ Etag:
116
+ - "\"c4d65c796823ed196964450e388e8fb5\""
117
+ X-Oauth-Scopes:
118
+ - repo
119
+ X-Accepted-Oauth-Scopes:
120
+ - repo
121
+ Vary:
122
+ - Accept, Authorization, Cookie, X-GitHub-OTP
123
+ - Accept-Encoding
124
+ X-Github-Media-Type:
125
+ - github.v3; format=json
126
+ X-Content-Type-Options:
127
+ - nosniff
128
+ Access-Control-Allow-Credentials:
129
+ - 'true'
130
+ Access-Control-Expose-Headers:
131
+ - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
132
+ X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
133
+ Access-Control-Allow-Origin:
134
+ - "*"
135
+ X-Github-Request-Id:
136
+ - 519F8646:0ED8:10BE646:53230B70
137
+ body:
138
+ encoding: UTF-8
139
+ string: "{\"id\":17630125,\"name\":\"bimble-test\",\"full_name\":\"Floppy/bimble-test\",\"owner\":{\"login\":\"Floppy\",\"id\":3565,\"avatar_url\":\"https://gravatar.com/avatar/c150a49c7709fa40bffca545ecf8942d?d=https%3A%2F%2Fidenticons.github.com%2Fe6e713296627dff6475085cc6a224464.png&r=x\",\"gravatar_id\":\"c150a49c7709fa40bffca545ecf8942d\",\"url\":\"https://api.github.com/users/Floppy\",\"html_url\":\"https://github.com/Floppy\",\"followers_url\":\"https://api.github.com/users/Floppy/followers\",\"following_url\":\"https://api.github.com/users/Floppy/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/Floppy/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/Floppy/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/Floppy/subscriptions\",\"organizations_url\":\"https://api.github.com/users/Floppy/orgs\",\"repos_url\":\"https://api.github.com/users/Floppy/repos\",\"events_url\":\"https://api.github.com/users/Floppy/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/Floppy/received_events\",\"type\":\"User\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/Floppy/bimble-test\",\"description\":\"\",\"fork\":false,\"url\":\"https://api.github.com/repos/Floppy/bimble-test\",\"forks_url\":\"https://api.github.com/repos/Floppy/bimble-test/forks\",\"keys_url\":\"https://api.github.com/repos/Floppy/bimble-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/Floppy/bimble-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/Floppy/bimble-test/teams\",\"hooks_url\":\"https://api.github.com/repos/Floppy/bimble-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/Floppy/bimble-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/Floppy/bimble-test/events\",\"assignees_url\":\"https://api.github.com/repos/Floppy/bimble-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/Floppy/bimble-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/Floppy/bimble-test/tags\",\"blobs_url\":\"https://api.github.com/repos/Floppy/bimble-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/Floppy/bimble-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/Floppy/bimble-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/Floppy/bimble-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/Floppy/bimble-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/Floppy/bimble-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/Floppy/bimble-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/Floppy/bimble-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/Floppy/bimble-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/Floppy/bimble-test/subscription\",\"commits_url\":\"https://api.github.com/repos/Floppy/bimble-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/Floppy/bimble-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/Floppy/bimble-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/Floppy/bimble-test/issues/comments/{number}\",\"contents_url\":\"https://api.github.com/repos/Floppy/bimble-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/Floppy/bimble-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/Floppy/bimble-test/merges\",\"archive_url\":\"https://api.github.com/repos/Floppy/bimble-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/Floppy/bimble-test/downloads\",\"issues_url\":\"https://api.github.com/repos/Floppy/bimble-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/Floppy/bimble-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/Floppy/bimble-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/Floppy/bimble-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/Floppy/bimble-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/Floppy/bimble-test/releases{/id}\",\"created_at\":\"2014-03-11T12:49:15Z\",\"updated_at\":\"2014-03-14T13:58:02Z\",\"pushed_at\":\"2014-03-14T13:58:01Z\",\"git_url\":\"git://github.com/Floppy/bimble-test.git\",\"ssh_url\":\"git@github.com:Floppy/bimble-test.git\",\"clone_url\":\"https://github.com/Floppy/bimble-test.git\",\"svn_url\":\"https://github.com/Floppy/bimble-test\",\"homepage\":null,\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":\"Ruby\",\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"forks_count\":0,\"mirror_url\":null,\"open_issues_count\":0,\"forks\":0,\"open_issues\":0,\"watchers\":0,\"default_branch\":\"master\",\"permissions\":{\"admin\":true,\"push\":true,\"pull\":true},\"network_count\":0,\"subscribers_count\":0}"
140
+ http_version:
141
+ recorded_at: Fri, 14 Mar 2014 14:00:19 GMT
142
+ - request:
143
+ method: get
144
+ uri: https://api.github.com/repos/Floppy/bimble-test/git/trees/master?access_token=<GITHUB_OAUTH_TOKEN>
145
+ body:
146
+ encoding: US-ASCII
147
+ string: ''
148
+ headers:
149
+ Accept:
150
+ - application/vnd.github.v3+json,application/vnd.github.beta+json;q=0.5,application/json;q=0.1
151
+ Accept-Charset:
152
+ - utf-8
153
+ User-Agent:
154
+ - Github Ruby Gem 0.11.3
155
+ Authorization:
156
+ - Token token="<GITHUB_OAUTH_TOKEN>"
157
+ Accept-Encoding:
158
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
159
+ response:
160
+ status:
161
+ code: 200
162
+ message: OK
163
+ headers:
164
+ Server:
165
+ - GitHub.com
166
+ Date:
167
+ - Fri, 14 Mar 2014 14:00:17 GMT
168
+ Content-Type:
169
+ - application/json; charset=utf-8
170
+ Transfer-Encoding:
171
+ - chunked
172
+ Status:
173
+ - 200 OK
174
+ X-Ratelimit-Limit:
175
+ - '5000'
176
+ X-Ratelimit-Remaining:
177
+ - '4803'
178
+ X-Ratelimit-Reset:
179
+ - '1394809217'
180
+ Cache-Control:
181
+ - private, max-age=60, s-maxage=60
182
+ Last-Modified:
183
+ - Fri, 14 Mar 2014 13:58:02 GMT
184
+ Etag:
185
+ - "\"c4d65c796823ed196964450e388e8fb5\""
186
+ X-Oauth-Scopes:
187
+ - repo
188
+ X-Accepted-Oauth-Scopes:
189
+ - ''
190
+ Vary:
191
+ - Accept, Authorization, Cookie, X-GitHub-OTP
192
+ - Accept-Encoding
193
+ X-Github-Media-Type:
194
+ - github.v3; format=json
195
+ X-Content-Type-Options:
196
+ - nosniff
197
+ Access-Control-Allow-Credentials:
198
+ - 'true'
199
+ Access-Control-Expose-Headers:
200
+ - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
201
+ X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
202
+ Access-Control-Allow-Origin:
203
+ - "*"
204
+ X-Github-Request-Id:
205
+ - 519F8646:0ED9:1642D46:53230B70
206
+ body:
207
+ encoding: UTF-8
208
+ string: "{\"sha\":\"master\",\"url\":\"https://api.github.com/repos/Floppy/bimble-test/git/trees/master\",\"tree\":[{\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"971ea446b4dd814d3e1a59f2df9f52d911e60168\",\"path\":\"Gemfile\",\"size\":79,\"url\":\"https://api.github.com/repos/Floppy/bimble-test/git/blobs/971ea446b4dd814d3e1a59f2df9f52d911e60168\"},{\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3d77996b4520655a4d90665c6825ede135b87751\",\"path\":\"Gemfile.lock\",\"size\":102,\"url\":\"https://api.github.com/repos/Floppy/bimble-test/git/blobs/3d77996b4520655a4d90665c6825ede135b87751\"}]}"
209
+ http_version:
210
+ recorded_at: Fri, 14 Mar 2014 14:00:19 GMT
211
+ - request:
212
+ method: post
213
+ uri: https://api.github.com/repos/Floppy/bimble-test/git/trees?access_token=<GITHUB_OAUTH_TOKEN>
214
+ body:
215
+ encoding: UTF-8
216
+ string: "{\"base_tree\":\"master\",\"tree\":[{\"path\":\"Gemfile.lock\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"47d2739ba2c34690248c8f91b84bb54e8936899a\"}]}"
217
+ headers:
218
+ Accept:
219
+ - application/vnd.github.v3+json,application/vnd.github.beta+json;q=0.5,application/json;q=0.1
220
+ Accept-Charset:
221
+ - utf-8
222
+ User-Agent:
223
+ - Github Ruby Gem 0.11.3
224
+ Content-Type:
225
+ - application/json
226
+ Authorization:
227
+ - Token token="<GITHUB_OAUTH_TOKEN>"
228
+ Accept-Encoding:
229
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
230
+ response:
231
+ status:
232
+ code: 201
233
+ message: Created
234
+ headers:
235
+ Server:
236
+ - GitHub.com
237
+ Date:
238
+ - Fri, 14 Mar 2014 14:00:17 GMT
239
+ Content-Type:
240
+ - application/json; charset=utf-8
241
+ Status:
242
+ - 201 Created
243
+ X-Ratelimit-Limit:
244
+ - '5000'
245
+ X-Ratelimit-Remaining:
246
+ - '4802'
247
+ X-Ratelimit-Reset:
248
+ - '1394809217'
249
+ Cache-Control:
250
+ - private, max-age=60, s-maxage=60
251
+ Etag:
252
+ - "\"5dcc72a840f291ddc73d55f5c61df109\""
253
+ X-Oauth-Scopes:
254
+ - repo
255
+ X-Accepted-Oauth-Scopes:
256
+ - ''
257
+ Location:
258
+ - https://api.github.com/repos/Floppy/bimble-test/git/trees/a3ebc2811635a51f9297a456ed1b8cb0abbb5aa3
259
+ Vary:
260
+ - Accept, Authorization, Cookie, X-GitHub-OTP
261
+ X-Github-Media-Type:
262
+ - github.v3; format=json
263
+ X-Content-Type-Options:
264
+ - nosniff
265
+ Content-Length:
266
+ - '601'
267
+ Access-Control-Allow-Credentials:
268
+ - 'true'
269
+ Access-Control-Expose-Headers:
270
+ - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
271
+ X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
272
+ Access-Control-Allow-Origin:
273
+ - "*"
274
+ X-Github-Request-Id:
275
+ - 519F8646:0ED8:10BE7EA:53230B71
276
+ body:
277
+ encoding: UTF-8
278
+ string: "{\"sha\":\"a3ebc2811635a51f9297a456ed1b8cb0abbb5aa3\",\"url\":\"https://api.github.com/repos/Floppy/bimble-test/git/trees/a3ebc2811635a51f9297a456ed1b8cb0abbb5aa3\",\"tree\":[{\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"971ea446b4dd814d3e1a59f2df9f52d911e60168\",\"path\":\"Gemfile\",\"size\":79,\"url\":\"https://api.github.com/repos/Floppy/bimble-test/git/blobs/971ea446b4dd814d3e1a59f2df9f52d911e60168\"},{\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"47d2739ba2c34690248c8f91b84bb54e8936899a\",\"path\":\"Gemfile.lock\",\"size\":11,\"url\":\"https://api.github.com/repos/Floppy/bimble-test/git/blobs/47d2739ba2c34690248c8f91b84bb54e8936899a\"}]}"
279
+ http_version:
280
+ recorded_at: Fri, 14 Mar 2014 14:00:20 GMT
281
+ - request:
282
+ method: get
283
+ uri: https://api.github.com/repos/Floppy/bimble-test/branches/master?access_token=<GITHUB_OAUTH_TOKEN>
284
+ body:
285
+ encoding: US-ASCII
286
+ string: ''
287
+ headers:
288
+ Accept:
289
+ - application/vnd.github.v3+json,application/vnd.github.beta+json;q=0.5,application/json;q=0.1
290
+ Accept-Charset:
291
+ - utf-8
292
+ User-Agent:
293
+ - Github Ruby Gem 0.11.3
294
+ Authorization:
295
+ - Token token="<GITHUB_OAUTH_TOKEN>"
296
+ Accept-Encoding:
297
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
298
+ response:
299
+ status:
300
+ code: 200
301
+ message: OK
302
+ headers:
303
+ Server:
304
+ - GitHub.com
305
+ Date:
306
+ - Fri, 14 Mar 2014 14:00:18 GMT
307
+ Content-Type:
308
+ - application/json; charset=utf-8
309
+ Transfer-Encoding:
310
+ - chunked
311
+ Status:
312
+ - 200 OK
313
+ X-Ratelimit-Limit:
314
+ - '5000'
315
+ X-Ratelimit-Remaining:
316
+ - '4801'
317
+ X-Ratelimit-Reset:
318
+ - '1394809218'
319
+ Cache-Control:
320
+ - private, max-age=60, s-maxage=60
321
+ Etag:
322
+ - "\"3a7913057633488993c3bf95f7d29565\""
323
+ X-Oauth-Scopes:
324
+ - repo
325
+ X-Accepted-Oauth-Scopes:
326
+ - ''
327
+ Vary:
328
+ - Accept, Authorization, Cookie, X-GitHub-OTP
329
+ - Accept-Encoding
330
+ X-Github-Media-Type:
331
+ - github.v3; format=json
332
+ X-Content-Type-Options:
333
+ - nosniff
334
+ Access-Control-Allow-Credentials:
335
+ - 'true'
336
+ Access-Control-Expose-Headers:
337
+ - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
338
+ X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
339
+ Access-Control-Allow-Origin:
340
+ - "*"
341
+ X-Github-Request-Id:
342
+ - 519F8646:0EDA:1AD9508:53230B72
343
+ body:
344
+ encoding: UTF-8
345
+ string: "{\"name\":\"master\",\"commit\":{\"sha\":\"97376a25bcc2e403ed5b9c9f7eb35c0e8a36c01c\",\"commit\":{\"author\":{\"name\":\"James
346
+ Smith\",\"email\":\"james@floppy.org.uk\",\"date\":\"2014-03-11T12:51:07Z\"},\"committer\":{\"name\":\"James
347
+ Smith\",\"email\":\"james@floppy.org.uk\",\"date\":\"2014-03-11T12:51:07Z\"},\"message\":\"test
348
+ gemfile\",\"tree\":{\"sha\":\"5ed8484f4e04996c3a4cf10eba9e24d4ef3a3cbb\",\"url\":\"https://api.github.com/repos/Floppy/bimble-test/git/trees/5ed8484f4e04996c3a4cf10eba9e24d4ef3a3cbb\"},\"url\":\"https://api.github.com/repos/Floppy/bimble-test/git/commits/97376a25bcc2e403ed5b9c9f7eb35c0e8a36c01c\",\"comment_count\":0},\"url\":\"https://api.github.com/repos/Floppy/bimble-test/commits/97376a25bcc2e403ed5b9c9f7eb35c0e8a36c01c\",\"html_url\":\"https://github.com/Floppy/bimble-test/commit/97376a25bcc2e403ed5b9c9f7eb35c0e8a36c01c\",\"comments_url\":\"https://api.github.com/repos/Floppy/bimble-test/commits/97376a25bcc2e403ed5b9c9f7eb35c0e8a36c01c/comments\",\"author\":{\"login\":\"Floppy\",\"id\":3565,\"avatar_url\":\"https://gravatar.com/avatar/c150a49c7709fa40bffca545ecf8942d?d=https%3A%2F%2Fidenticons.github.com%2Fe6e713296627dff6475085cc6a224464.png&r=x\",\"gravatar_id\":\"c150a49c7709fa40bffca545ecf8942d\",\"url\":\"https://api.github.com/users/Floppy\",\"html_url\":\"https://github.com/Floppy\",\"followers_url\":\"https://api.github.com/users/Floppy/followers\",\"following_url\":\"https://api.github.com/users/Floppy/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/Floppy/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/Floppy/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/Floppy/subscriptions\",\"organizations_url\":\"https://api.github.com/users/Floppy/orgs\",\"repos_url\":\"https://api.github.com/users/Floppy/repos\",\"events_url\":\"https://api.github.com/users/Floppy/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/Floppy/received_events\",\"type\":\"User\",\"site_admin\":false},\"committer\":{\"login\":\"Floppy\",\"id\":3565,\"avatar_url\":\"https://gravatar.com/avatar/c150a49c7709fa40bffca545ecf8942d?d=https%3A%2F%2Fidenticons.github.com%2Fe6e713296627dff6475085cc6a224464.png&r=x\",\"gravatar_id\":\"c150a49c7709fa40bffca545ecf8942d\",\"url\":\"https://api.github.com/users/Floppy\",\"html_url\":\"https://github.com/Floppy\",\"followers_url\":\"https://api.github.com/users/Floppy/followers\",\"following_url\":\"https://api.github.com/users/Floppy/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/Floppy/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/Floppy/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/Floppy/subscriptions\",\"organizations_url\":\"https://api.github.com/users/Floppy/orgs\",\"repos_url\":\"https://api.github.com/users/Floppy/repos\",\"events_url\":\"https://api.github.com/users/Floppy/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/Floppy/received_events\",\"type\":\"User\",\"site_admin\":false},\"parents\":[]},\"_links\":{\"self\":\"https://api.github.com/repos/Floppy/bimble-test/branches/master\",\"html\":\"https://github.com/Floppy/bimble-test/tree/master\"}}"
349
+ http_version:
350
+ recorded_at: Fri, 14 Mar 2014 14:00:20 GMT
351
+ - request:
352
+ method: post
353
+ uri: https://api.github.com/repos/Floppy/bimble-test/git/commits?access_token=<GITHUB_OAUTH_TOKEN>
354
+ body:
355
+ encoding: UTF-8
356
+ string: "{\"message\":\"automatically updated dependencies\",\"parents\":[\"97376a25bcc2e403ed5b9c9f7eb35c0e8a36c01c\"],\"tree\":\"a3ebc2811635a51f9297a456ed1b8cb0abbb5aa3\"}"
357
+ headers:
358
+ Accept:
359
+ - application/vnd.github.v3+json,application/vnd.github.beta+json;q=0.5,application/json;q=0.1
360
+ Accept-Charset:
361
+ - utf-8
362
+ User-Agent:
363
+ - Github Ruby Gem 0.11.3
364
+ Content-Type:
365
+ - application/json
366
+ Authorization:
367
+ - Token token="<GITHUB_OAUTH_TOKEN>"
368
+ Accept-Encoding:
369
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
370
+ response:
371
+ status:
372
+ code: 201
373
+ message: Created
374
+ headers:
375
+ Server:
376
+ - GitHub.com
377
+ Date:
378
+ - Fri, 14 Mar 2014 14:00:18 GMT
379
+ Content-Type:
380
+ - application/json; charset=utf-8
381
+ Status:
382
+ - 201 Created
383
+ X-Ratelimit-Limit:
384
+ - '5000'
385
+ X-Ratelimit-Remaining:
386
+ - '4800'
387
+ X-Ratelimit-Reset:
388
+ - '1394809218'
389
+ Cache-Control:
390
+ - private, max-age=60, s-maxage=60
391
+ Etag:
392
+ - "\"aa5448614c8c17411bfb251c727e3d48\""
393
+ X-Oauth-Scopes:
394
+ - repo
395
+ X-Accepted-Oauth-Scopes:
396
+ - ''
397
+ Location:
398
+ - https://api.github.com/repos/Floppy/bimble-test/git/commits/f88f55702a4b1e90b88e07d6fba57ef2f63a8965
399
+ Vary:
400
+ - Accept, Authorization, Cookie, X-GitHub-OTP
401
+ X-Github-Media-Type:
402
+ - github.v3; format=json
403
+ X-Content-Type-Options:
404
+ - nosniff
405
+ Content-Length:
406
+ - '928'
407
+ Access-Control-Allow-Credentials:
408
+ - 'true'
409
+ Access-Control-Expose-Headers:
410
+ - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
411
+ X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
412
+ Access-Control-Allow-Origin:
413
+ - "*"
414
+ X-Github-Request-Id:
415
+ - 519F8646:0ED9:164303C:53230B72
416
+ body:
417
+ encoding: UTF-8
418
+ string: "{\"sha\":\"f88f55702a4b1e90b88e07d6fba57ef2f63a8965\",\"url\":\"https://api.github.com/repos/Floppy/bimble-test/git/commits/f88f55702a4b1e90b88e07d6fba57ef2f63a8965\",\"html_url\":\"https://github.com/Floppy/bimble-test/commit/f88f55702a4b1e90b88e07d6fba57ef2f63a8965\",\"author\":{\"name\":\"James
419
+ Smith\",\"email\":\"james@floppy.org.uk\",\"date\":\"2014-03-14T14:00:18Z\"},\"committer\":{\"name\":\"James
420
+ Smith\",\"email\":\"james@floppy.org.uk\",\"date\":\"2014-03-14T14:00:18Z\"},\"tree\":{\"sha\":\"a3ebc2811635a51f9297a456ed1b8cb0abbb5aa3\",\"url\":\"https://api.github.com/repos/Floppy/bimble-test/git/trees/a3ebc2811635a51f9297a456ed1b8cb0abbb5aa3\"},\"message\":\"automatically
421
+ updated dependencies\",\"parents\":[{\"sha\":\"97376a25bcc2e403ed5b9c9f7eb35c0e8a36c01c\",\"url\":\"https://api.github.com/repos/Floppy/bimble-test/git/commits/97376a25bcc2e403ed5b9c9f7eb35c0e8a36c01c\",\"html_url\":\"https://github.com/Floppy/bimble-test/commit/97376a25bcc2e403ed5b9c9f7eb35c0e8a36c01c\"}]}"
422
+ http_version:
423
+ recorded_at: Fri, 14 Mar 2014 14:00:21 GMT
424
+ - request:
425
+ method: post
426
+ uri: https://api.github.com/repos/Floppy/bimble-test/git/refs?access_token=<GITHUB_OAUTH_TOKEN>
427
+ body:
428
+ encoding: UTF-8
429
+ string: "{\"ref\":\"refs/heads/update-dependencies-2014-03-14\",\"sha\":\"f88f55702a4b1e90b88e07d6fba57ef2f63a8965\"}"
430
+ headers:
431
+ Accept:
432
+ - application/vnd.github.v3+json,application/vnd.github.beta+json;q=0.5,application/json;q=0.1
433
+ Accept-Charset:
434
+ - utf-8
435
+ User-Agent:
436
+ - Github Ruby Gem 0.11.3
437
+ Content-Type:
438
+ - application/json
439
+ Authorization:
440
+ - Token token="<GITHUB_OAUTH_TOKEN>"
441
+ Accept-Encoding:
442
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
443
+ response:
444
+ status:
445
+ code: 201
446
+ message: Created
447
+ headers:
448
+ Server:
449
+ - GitHub.com
450
+ Date:
451
+ - Fri, 14 Mar 2014 14:00:19 GMT
452
+ Content-Type:
453
+ - application/json; charset=utf-8
454
+ Status:
455
+ - 201 Created
456
+ X-Ratelimit-Limit:
457
+ - '5000'
458
+ X-Ratelimit-Remaining:
459
+ - '4799'
460
+ X-Ratelimit-Reset:
461
+ - '1394809219'
462
+ Cache-Control:
463
+ - private, max-age=60, s-maxage=60
464
+ Etag:
465
+ - "\"834c0d661a98a723fef0e6b2f4885451\""
466
+ X-Oauth-Scopes:
467
+ - repo
468
+ X-Accepted-Oauth-Scopes:
469
+ - ''
470
+ Location:
471
+ - https://api.github.com/repos/Floppy/bimble-test/git/refs/heads/update-dependencies-2014-03-14
472
+ Vary:
473
+ - Accept, Authorization, Cookie, X-GitHub-OTP
474
+ X-Github-Media-Type:
475
+ - github.v3; format=json
476
+ X-Content-Type-Options:
477
+ - nosniff
478
+ Content-Length:
479
+ - '338'
480
+ Access-Control-Allow-Credentials:
481
+ - 'true'
482
+ Access-Control-Expose-Headers:
483
+ - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
484
+ X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
485
+ Access-Control-Allow-Origin:
486
+ - "*"
487
+ X-Github-Request-Id:
488
+ - 519F8646:0ED7:AB8280:53230B73
489
+ body:
490
+ encoding: UTF-8
491
+ string: "{\"ref\":\"refs/heads/update-dependencies-2014-03-14\",\"url\":\"https://api.github.com/repos/Floppy/bimble-test/git/refs/heads/update-dependencies-2014-03-14\",\"object\":{\"sha\":\"f88f55702a4b1e90b88e07d6fba57ef2f63a8965\",\"type\":\"commit\",\"url\":\"https://api.github.com/repos/Floppy/bimble-test/git/commits/f88f55702a4b1e90b88e07d6fba57ef2f63a8965\"}}"
492
+ http_version:
493
+ recorded_at: Fri, 14 Mar 2014 14:00:21 GMT
494
+ - request:
495
+ method: post
496
+ uri: https://api.github.com/repos/Floppy/bimble-test/pulls?access_token=<GITHUB_OAUTH_TOKEN>
497
+ body:
498
+ encoding: UTF-8
499
+ string: "{\"title\":\"Updated dependencies\",\"body\":\"Automatically updated
500
+ by Bimble\",\"head\":\"update-dependencies-2014-03-14\",\"base\":\"master\"}"
501
+ headers:
502
+ Accept:
503
+ - application/vnd.github.v3+json,application/vnd.github.beta+json;q=0.5,application/json;q=0.1
504
+ Accept-Charset:
505
+ - utf-8
506
+ User-Agent:
507
+ - Github Ruby Gem 0.11.3
508
+ Content-Type:
509
+ - application/json
510
+ Authorization:
511
+ - Token token="<GITHUB_OAUTH_TOKEN>"
512
+ Accept-Encoding:
513
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
514
+ response:
515
+ status:
516
+ code: 201
517
+ message: Created
518
+ headers:
519
+ Server:
520
+ - GitHub.com
521
+ Date:
522
+ - Fri, 14 Mar 2014 14:00:19 GMT
523
+ Content-Type:
524
+ - application/json; charset=utf-8
525
+ Status:
526
+ - 201 Created
527
+ X-Ratelimit-Limit:
528
+ - '5000'
529
+ X-Ratelimit-Remaining:
530
+ - '4798'
531
+ X-Ratelimit-Reset:
532
+ - '1394809219'
533
+ Cache-Control:
534
+ - private, max-age=60, s-maxage=60
535
+ Etag:
536
+ - "\"efcf7c02f9d472420ec80a02a008c02a\""
537
+ X-Oauth-Scopes:
538
+ - repo
539
+ X-Accepted-Oauth-Scopes:
540
+ - ''
541
+ Location:
542
+ - https://api.github.com/repos/Floppy/bimble-test/pulls/7
543
+ Vary:
544
+ - Accept, Authorization, Cookie, X-GitHub-OTP
545
+ X-Github-Media-Type:
546
+ - github.v3; format=json
547
+ X-Content-Type-Options:
548
+ - nosniff
549
+ Content-Length:
550
+ - '14356'
551
+ Access-Control-Allow-Credentials:
552
+ - 'true'
553
+ Access-Control-Expose-Headers:
554
+ - ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset,
555
+ X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
556
+ Access-Control-Allow-Origin:
557
+ - "*"
558
+ X-Github-Request-Id:
559
+ - 519F8646:0ED8:10BEB2B:53230B73
560
+ body:
561
+ encoding: UTF-8
562
+ string: "{\"url\":\"https://api.github.com/repos/Floppy/bimble-test/pulls/7\",\"id\":13571852,\"html_url\":\"https://github.com/Floppy/bimble-test/pull/7\",\"diff_url\":\"https://github.com/Floppy/bimble-test/pull/7.diff\",\"patch_url\":\"https://github.com/Floppy/bimble-test/pull/7.patch\",\"issue_url\":\"https://api.github.com/repos/Floppy/bimble-test/issues/7\",\"number\":7,\"state\":\"open\",\"title\":\"Updated
563
+ dependencies\",\"user\":{\"login\":\"Floppy\",\"id\":3565,\"avatar_url\":\"https://gravatar.com/avatar/c150a49c7709fa40bffca545ecf8942d?d=https%3A%2F%2Fidenticons.github.com%2Fe6e713296627dff6475085cc6a224464.png&r=x\",\"gravatar_id\":\"c150a49c7709fa40bffca545ecf8942d\",\"url\":\"https://api.github.com/users/Floppy\",\"html_url\":\"https://github.com/Floppy\",\"followers_url\":\"https://api.github.com/users/Floppy/followers\",\"following_url\":\"https://api.github.com/users/Floppy/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/Floppy/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/Floppy/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/Floppy/subscriptions\",\"organizations_url\":\"https://api.github.com/users/Floppy/orgs\",\"repos_url\":\"https://api.github.com/users/Floppy/repos\",\"events_url\":\"https://api.github.com/users/Floppy/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/Floppy/received_events\",\"type\":\"User\",\"site_admin\":false},\"body\":\"Automatically
564
+ updated by Bimble\",\"created_at\":\"2014-03-14T14:00:19Z\",\"updated_at\":\"2014-03-14T14:00:19Z\",\"closed_at\":null,\"merged_at\":null,\"merge_commit_sha\":null,\"assignee\":null,\"milestone\":null,\"commits_url\":\"https://api.github.com/repos/Floppy/bimble-test/pulls/7/commits\",\"review_comments_url\":\"https://api.github.com/repos/Floppy/bimble-test/pulls/7/comments\",\"review_comment_url\":\"https://api.github.com/repos/Floppy/bimble-test/pulls/comments/{number}\",\"comments_url\":\"https://api.github.com/repos/Floppy/bimble-test/issues/7/comments\",\"statuses_url\":\"https://api.github.com/repos/Floppy/bimble-test/statuses/f88f55702a4b1e90b88e07d6fba57ef2f63a8965\",\"head\":{\"label\":\"Floppy:update-dependencies-2014-03-14\",\"ref\":\"update-dependencies-2014-03-14\",\"sha\":\"f88f55702a4b1e90b88e07d6fba57ef2f63a8965\",\"user\":{\"login\":\"Floppy\",\"id\":3565,\"avatar_url\":\"https://gravatar.com/avatar/c150a49c7709fa40bffca545ecf8942d?d=https%3A%2F%2Fidenticons.github.com%2Fe6e713296627dff6475085cc6a224464.png&r=x\",\"gravatar_id\":\"c150a49c7709fa40bffca545ecf8942d\",\"url\":\"https://api.github.com/users/Floppy\",\"html_url\":\"https://github.com/Floppy\",\"followers_url\":\"https://api.github.com/users/Floppy/followers\",\"following_url\":\"https://api.github.com/users/Floppy/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/Floppy/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/Floppy/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/Floppy/subscriptions\",\"organizations_url\":\"https://api.github.com/users/Floppy/orgs\",\"repos_url\":\"https://api.github.com/users/Floppy/repos\",\"events_url\":\"https://api.github.com/users/Floppy/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/Floppy/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":17630125,\"name\":\"bimble-test\",\"full_name\":\"Floppy/bimble-test\",\"owner\":{\"login\":\"Floppy\",\"id\":3565,\"avatar_url\":\"https://gravatar.com/avatar/c150a49c7709fa40bffca545ecf8942d?d=https%3A%2F%2Fidenticons.github.com%2Fe6e713296627dff6475085cc6a224464.png&r=x\",\"gravatar_id\":\"c150a49c7709fa40bffca545ecf8942d\",\"url\":\"https://api.github.com/users/Floppy\",\"html_url\":\"https://github.com/Floppy\",\"followers_url\":\"https://api.github.com/users/Floppy/followers\",\"following_url\":\"https://api.github.com/users/Floppy/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/Floppy/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/Floppy/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/Floppy/subscriptions\",\"organizations_url\":\"https://api.github.com/users/Floppy/orgs\",\"repos_url\":\"https://api.github.com/users/Floppy/repos\",\"events_url\":\"https://api.github.com/users/Floppy/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/Floppy/received_events\",\"type\":\"User\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/Floppy/bimble-test\",\"description\":\"\",\"fork\":false,\"url\":\"https://api.github.com/repos/Floppy/bimble-test\",\"forks_url\":\"https://api.github.com/repos/Floppy/bimble-test/forks\",\"keys_url\":\"https://api.github.com/repos/Floppy/bimble-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/Floppy/bimble-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/Floppy/bimble-test/teams\",\"hooks_url\":\"https://api.github.com/repos/Floppy/bimble-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/Floppy/bimble-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/Floppy/bimble-test/events\",\"assignees_url\":\"https://api.github.com/repos/Floppy/bimble-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/Floppy/bimble-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/Floppy/bimble-test/tags\",\"blobs_url\":\"https://api.github.com/repos/Floppy/bimble-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/Floppy/bimble-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/Floppy/bimble-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/Floppy/bimble-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/Floppy/bimble-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/Floppy/bimble-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/Floppy/bimble-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/Floppy/bimble-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/Floppy/bimble-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/Floppy/bimble-test/subscription\",\"commits_url\":\"https://api.github.com/repos/Floppy/bimble-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/Floppy/bimble-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/Floppy/bimble-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/Floppy/bimble-test/issues/comments/{number}\",\"contents_url\":\"https://api.github.com/repos/Floppy/bimble-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/Floppy/bimble-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/Floppy/bimble-test/merges\",\"archive_url\":\"https://api.github.com/repos/Floppy/bimble-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/Floppy/bimble-test/downloads\",\"issues_url\":\"https://api.github.com/repos/Floppy/bimble-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/Floppy/bimble-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/Floppy/bimble-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/Floppy/bimble-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/Floppy/bimble-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/Floppy/bimble-test/releases{/id}\",\"created_at\":\"2014-03-11T12:49:15Z\",\"updated_at\":\"2014-03-14T14:00:19Z\",\"pushed_at\":\"2014-03-14T14:00:19Z\",\"git_url\":\"git://github.com/Floppy/bimble-test.git\",\"ssh_url\":\"git@github.com:Floppy/bimble-test.git\",\"clone_url\":\"https://github.com/Floppy/bimble-test.git\",\"svn_url\":\"https://github.com/Floppy/bimble-test\",\"homepage\":null,\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":\"Ruby\",\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"forks_count\":0,\"mirror_url\":null,\"open_issues_count\":1,\"forks\":0,\"open_issues\":1,\"watchers\":0,\"default_branch\":\"master\",\"master_branch\":\"master\"}},\"base\":{\"label\":\"Floppy:master\",\"ref\":\"master\",\"sha\":\"97376a25bcc2e403ed5b9c9f7eb35c0e8a36c01c\",\"user\":{\"login\":\"Floppy\",\"id\":3565,\"avatar_url\":\"https://gravatar.com/avatar/c150a49c7709fa40bffca545ecf8942d?d=https%3A%2F%2Fidenticons.github.com%2Fe6e713296627dff6475085cc6a224464.png&r=x\",\"gravatar_id\":\"c150a49c7709fa40bffca545ecf8942d\",\"url\":\"https://api.github.com/users/Floppy\",\"html_url\":\"https://github.com/Floppy\",\"followers_url\":\"https://api.github.com/users/Floppy/followers\",\"following_url\":\"https://api.github.com/users/Floppy/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/Floppy/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/Floppy/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/Floppy/subscriptions\",\"organizations_url\":\"https://api.github.com/users/Floppy/orgs\",\"repos_url\":\"https://api.github.com/users/Floppy/repos\",\"events_url\":\"https://api.github.com/users/Floppy/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/Floppy/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":17630125,\"name\":\"bimble-test\",\"full_name\":\"Floppy/bimble-test\",\"owner\":{\"login\":\"Floppy\",\"id\":3565,\"avatar_url\":\"https://gravatar.com/avatar/c150a49c7709fa40bffca545ecf8942d?d=https%3A%2F%2Fidenticons.github.com%2Fe6e713296627dff6475085cc6a224464.png&r=x\",\"gravatar_id\":\"c150a49c7709fa40bffca545ecf8942d\",\"url\":\"https://api.github.com/users/Floppy\",\"html_url\":\"https://github.com/Floppy\",\"followers_url\":\"https://api.github.com/users/Floppy/followers\",\"following_url\":\"https://api.github.com/users/Floppy/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/Floppy/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/Floppy/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/Floppy/subscriptions\",\"organizations_url\":\"https://api.github.com/users/Floppy/orgs\",\"repos_url\":\"https://api.github.com/users/Floppy/repos\",\"events_url\":\"https://api.github.com/users/Floppy/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/Floppy/received_events\",\"type\":\"User\",\"site_admin\":false},\"private\":false,\"html_url\":\"https://github.com/Floppy/bimble-test\",\"description\":\"\",\"fork\":false,\"url\":\"https://api.github.com/repos/Floppy/bimble-test\",\"forks_url\":\"https://api.github.com/repos/Floppy/bimble-test/forks\",\"keys_url\":\"https://api.github.com/repos/Floppy/bimble-test/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/Floppy/bimble-test/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/Floppy/bimble-test/teams\",\"hooks_url\":\"https://api.github.com/repos/Floppy/bimble-test/hooks\",\"issue_events_url\":\"https://api.github.com/repos/Floppy/bimble-test/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/Floppy/bimble-test/events\",\"assignees_url\":\"https://api.github.com/repos/Floppy/bimble-test/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/Floppy/bimble-test/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/Floppy/bimble-test/tags\",\"blobs_url\":\"https://api.github.com/repos/Floppy/bimble-test/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/Floppy/bimble-test/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/Floppy/bimble-test/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/Floppy/bimble-test/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/Floppy/bimble-test/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/Floppy/bimble-test/languages\",\"stargazers_url\":\"https://api.github.com/repos/Floppy/bimble-test/stargazers\",\"contributors_url\":\"https://api.github.com/repos/Floppy/bimble-test/contributors\",\"subscribers_url\":\"https://api.github.com/repos/Floppy/bimble-test/subscribers\",\"subscription_url\":\"https://api.github.com/repos/Floppy/bimble-test/subscription\",\"commits_url\":\"https://api.github.com/repos/Floppy/bimble-test/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/Floppy/bimble-test/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/Floppy/bimble-test/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/Floppy/bimble-test/issues/comments/{number}\",\"contents_url\":\"https://api.github.com/repos/Floppy/bimble-test/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/Floppy/bimble-test/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/Floppy/bimble-test/merges\",\"archive_url\":\"https://api.github.com/repos/Floppy/bimble-test/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/Floppy/bimble-test/downloads\",\"issues_url\":\"https://api.github.com/repos/Floppy/bimble-test/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/Floppy/bimble-test/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/Floppy/bimble-test/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/Floppy/bimble-test/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/Floppy/bimble-test/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/Floppy/bimble-test/releases{/id}\",\"created_at\":\"2014-03-11T12:49:15Z\",\"updated_at\":\"2014-03-14T14:00:19Z\",\"pushed_at\":\"2014-03-14T14:00:19Z\",\"git_url\":\"git://github.com/Floppy/bimble-test.git\",\"ssh_url\":\"git@github.com:Floppy/bimble-test.git\",\"clone_url\":\"https://github.com/Floppy/bimble-test.git\",\"svn_url\":\"https://github.com/Floppy/bimble-test\",\"homepage\":null,\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":\"Ruby\",\"has_issues\":true,\"has_downloads\":true,\"has_wiki\":true,\"forks_count\":0,\"mirror_url\":null,\"open_issues_count\":1,\"forks\":0,\"open_issues\":1,\"watchers\":0,\"default_branch\":\"master\",\"master_branch\":\"master\"}},\"_links\":{\"self\":{\"href\":\"https://api.github.com/repos/Floppy/bimble-test/pulls/7\"},\"html\":{\"href\":\"https://github.com/Floppy/bimble-test/pull/7\"},\"issue\":{\"href\":\"https://api.github.com/repos/Floppy/bimble-test/issues/7\"},\"comments\":{\"href\":\"https://api.github.com/repos/Floppy/bimble-test/issues/7/comments\"},\"review_comments\":{\"href\":\"https://api.github.com/repos/Floppy/bimble-test/pulls/7/comments\"},\"review_comment\":{\"href\":\"https://api.github.com/repos/Floppy/bimble-test/pulls/comments/{number}\"},\"commits\":{\"href\":\"https://api.github.com/repos/Floppy/bimble-test/pulls/7/commits\"},\"statuses\":{\"href\":\"https://api.github.com/repos/Floppy/bimble-test/statuses/f88f55702a4b1e90b88e07d6fba57ef2f63a8965\"}},\"merged\":false,\"mergeable\":null,\"mergeable_state\":\"unknown\",\"merged_by\":null,\"comments\":0,\"review_comments\":0,\"commits\":1,\"additions\":1,\"deletions\":10,\"changed_files\":1}"
565
+ http_version:
566
+ recorded_at: Fri, 14 Mar 2014 14:00:22 GMT
567
+ recorded_with: VCR 2.8.0