worochi 0.0.7 → 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/lib/worochi/agent/{sample.rb → #example.rb} +2 -14
  3. data/lib/worochi/agent/dropbox.rb +3 -13
  4. data/lib/worochi/agent/github.rb +8 -23
  5. data/lib/worochi/agent.rb +46 -18
  6. data/lib/worochi/config/#example.yml +35 -0
  7. data/lib/worochi/config/dropbox.yml +14 -0
  8. data/lib/worochi/config/github.yml +17 -0
  9. data/lib/worochi/config.rb +9 -84
  10. data/lib/worochi/configurator.rb +120 -0
  11. data/lib/worochi/helper/github_helper.rb +111 -0
  12. data/lib/worochi/helper.rb +28 -7
  13. data/lib/worochi/item.rb +5 -3
  14. data/lib/worochi/log.rb +8 -14
  15. data/lib/worochi/oauth.rb +69 -0
  16. data/lib/worochi/version.rb +1 -1
  17. data/lib/worochi.rb +20 -3
  18. data/spec/cassettes/Worochi/_push/pushes_with_agents.yml +512 -0
  19. data/spec/cassettes/Worochi_Agent_Dropbox/_push_item/pushes_it_chunked_if_size_exceeds_limit.yml +1049 -0
  20. data/spec/cassettes/Worochi_Agent_Dropbox/_push_item_chunked/raises_an_error.yml +44 -0
  21. data/spec/cassettes/Worochi_Agent_Dropbox/_push_items/pushes_multiple_items.yml +165 -0
  22. data/spec/cassettes/Worochi_Agent_Dropbox/it_should_behave_like_a_service_agent/_files/raises_error_on_invalid_path.yml +38 -0
  23. data/spec/cassettes/Worochi_Agent_Dropbox/it_should_behave_like_a_service_agent/_files_and_folders/shows_detailed_listing.yml +79 -0
  24. data/spec/cassettes/Worochi_Agent_Dropbox/it_should_behave_like_a_service_agent/_files_and_folders/shows_detailed_listing_including_the_required_fields.yml +79 -0
  25. data/spec/cassettes/Worochi_Agent_Github/_list/works_with_absolute_paths.yml +12 -12
  26. data/spec/cassettes/Worochi_Agent_Github/_repos/lists_the_repos.yml +207 -0
  27. data/spec/cassettes/Worochi_Agent_Github/_source_branch/retrieves_the_master_branch_correctly.yml +6 -6
  28. data/spec/cassettes/Worochi_Agent_Github/it_should_behave_like_a_service_agent/_files/accepts_a_different_relative_path.yml +12 -12
  29. data/spec/cassettes/Worochi_Agent_Github/it_should_behave_like_a_service_agent/_files/contains_file1.yml +12 -12
  30. data/spec/cassettes/Worochi_Agent_Github/it_should_behave_like_a_service_agent/_files/does_not_contain_folder1.yml +12 -12
  31. data/spec/cassettes/Worochi_Agent_Github/it_should_behave_like_a_service_agent/_files/raises_error_on_invalid_path.yml +133 -0
  32. data/spec/cassettes/Worochi_Agent_Github/it_should_behave_like_a_service_agent/_files_and_folders/contains_folder1_and_file1.yml +24 -24
  33. data/spec/cassettes/Worochi_Agent_Github/it_should_behave_like_a_service_agent/_files_and_folders/shows_detailed_listing_including_the_required_fields.yml +133 -0
  34. data/spec/cassettes/Worochi_Agent_Github/it_should_behave_like_a_service_agent/_folders/accepts_a_different_relative_path.yml +12 -12
  35. data/spec/cassettes/Worochi_Agent_Github/it_should_behave_like_a_service_agent/_folders/contains_folder1.yml +12 -12
  36. data/spec/cassettes/Worochi_Agent_Github/it_should_behave_like_a_service_agent/_folders/does_not_contain_file1.yml +12 -12
  37. data/spec/cassettes/Worochi_Agent_Github/{_push_all → modifies_the_repo/_push_all}/pushes_a_list_of_items_to_create_a_new_commit.yml +80 -80
  38. data/spec/cassettes/Worochi_Agent_Github/{_push_all → modifies_the_repo/_push_all}/pushes_the_file_to_the_right_place.yml +60 -60
  39. data/spec/cassettes/Worochi_Agent_Github/modifies_the_repo/_push_blob/pushes_the_blob_even_when_it_is_larger_than_block_size.yml +181 -0
  40. data/spec/cassettes/Worochi_Agent_Github/modifies_the_repo/_push_item/pushes_a_single_item_and_makes_a_commit.yml +687 -0
  41. data/spec/cassettes/Worochi_Agent_Github/modifies_the_repo/_stream_blob/streams_the_file_as_an_Base64_JSON_field.yml +181 -0
  42. data/spec/cassettes/Worochi_OAuth/_flow_end/rejects_bad_code.yml +56 -0
  43. data/spec/{helper.rb → spec_helper.rb} +14 -1
  44. data/spec/support/aws_uri_matcher.rb +1 -1
  45. data/spec/support/shared_exampes_for_agents.rb +13 -2
  46. data/spec/support/test_files.rb +4 -4
  47. data/spec/worochi/agent/dropbox_spec.rb +29 -3
  48. data/spec/worochi/agent/github_spec.rb +54 -26
  49. data/spec/worochi/agent_spec.rb +34 -1
  50. data/spec/worochi/config_spec.rb +46 -30
  51. data/spec/worochi/helper/github_helper_spec.rb +94 -0
  52. data/spec/worochi/helper_spec.rb +15 -3
  53. data/spec/worochi/item_spec.rb +9 -6
  54. data/spec/worochi/log_spec.rb +30 -0
  55. data/spec/worochi/oauth_spec.rb +33 -0
  56. data/spec/worochi_spec.rb +25 -1
  57. data/worochi.gemspec +5 -1
  58. metadata +104 -11
  59. data/lib/worochi/helper/github.rb +0 -100
  60. data/spec/worochi/helper/github_spec.rb +0 -57
@@ -23,7 +23,7 @@ http_interactions:
23
23
  Server:
24
24
  - GitHub.com
25
25
  Date:
26
- - Sat, 10 Aug 2013 00:14:58 GMT
26
+ - Thu, 15 Aug 2013 21:09:47 GMT
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Status:
@@ -31,9 +31,9 @@ http_interactions:
31
31
  X-Ratelimit-Limit:
32
32
  - '5000'
33
33
  X-Ratelimit-Remaining:
34
- - '4909'
34
+ - '4721'
35
35
  X-Ratelimit-Reset:
36
- - '1376096590'
36
+ - '1376602835'
37
37
  X-Oauth-Scopes:
38
38
  - user, public_repo, repo, gist
39
39
  X-Accepted-Oauth-Scopes:
@@ -55,7 +55,7 @@ http_interactions:
55
55
  encoding: UTF-8
56
56
  string: '{"message":"Validation Failed"}'
57
57
  http_version:
58
- recorded_at: Sat, 10 Aug 2013 00:14:58 GMT
58
+ recorded_at: Thu, 15 Aug 2013 21:09:47 GMT
59
59
  - request:
60
60
  method: get
61
61
  uri: http://soraven.com/blog/wp-content/uploads/2013/06/sr3.gif
@@ -77,7 +77,7 @@ http_interactions:
77
77
  message: OK
78
78
  headers:
79
79
  Date:
80
- - Sat, 10 Aug 2013 00:14:58 GMT
80
+ - Thu, 15 Aug 2013 21:09:47 GMT
81
81
  Server:
82
82
  - Apache
83
83
  Last-Modified:
@@ -159,7 +159,7 @@ http_interactions:
159
159
  BeCCFHjBABdow14BAIILGGAMGlDBBmDgiaR6AAYbUEE9zsDZznr2s6ANrWhH
160
160
  S9rSmva0qE2tarEQBAA7
161
161
  http_version:
162
- recorded_at: Sat, 10 Aug 2013 00:14:59 GMT
162
+ recorded_at: Thu, 15 Aug 2013 21:09:47 GMT
163
163
  - request:
164
164
  method: get
165
165
  uri: https://api.github.com/repos/darkmirage/test/branches/master
@@ -183,7 +183,7 @@ http_interactions:
183
183
  Server:
184
184
  - GitHub.com
185
185
  Date:
186
- - Sat, 10 Aug 2013 00:14:59 GMT
186
+ - Thu, 15 Aug 2013 21:09:48 GMT
187
187
  Content-Type:
188
188
  - application/json; charset=utf-8
189
189
  Transfer-Encoding:
@@ -193,9 +193,9 @@ http_interactions:
193
193
  X-Ratelimit-Limit:
194
194
  - '5000'
195
195
  X-Ratelimit-Remaining:
196
- - '4908'
196
+ - '4720'
197
197
  X-Ratelimit-Reset:
198
- - '1376096590'
198
+ - '1376602835'
199
199
  X-Oauth-Scopes:
200
200
  - user, public_repo, repo, gist
201
201
  X-Accepted-Oauth-Scopes:
@@ -212,7 +212,7 @@ http_interactions:
212
212
  Access-Control-Allow-Origin:
213
213
  - '*'
214
214
  Etag:
215
- - '"9f1960e9f71a26ef10999b56127f5ff5"'
215
+ - '"1e9a35ec492ea865f92a1b38b774b076"'
216
216
  Cache-Control:
217
217
  - max-age=0, private, must-revalidate
218
218
  Vary:
@@ -222,9 +222,9 @@ http_interactions:
222
222
  string: '{"name":"master","commit":{"sha":"cdddc3941866854cdb41c023d0f5240ed10df053","commit":{"author":{"name":"Raven
223
223
  Jiang","email":"raven@cs.stanford.edu","date":"2013-08-09T23:23:24Z"},"committer":{"name":"Raven
224
224
  Jiang","email":"raven@cs.stanford.edu","date":"2013-08-09T23:23:24Z"},"message":"Added
225
- subfolder testing","tree":{"sha":"6553d302dfc55bf5cd09c07a6125753af023c7a5","url":"https://api.github.com/repos/darkmirage/test/git/trees/6553d302dfc55bf5cd09c07a6125753af023c7a5"},"url":"https://api.github.com/repos/darkmirage/test/git/commits/cdddc3941866854cdb41c023d0f5240ed10df053","comment_count":0},"url":"https://api.github.com/repos/darkmirage/test/commits/cdddc3941866854cdb41c023d0f5240ed10df053","html_url":"https://github.com/darkmirage/test/commit/cdddc3941866854cdb41c023d0f5240ed10df053","comments_url":"https://api.github.com/repos/darkmirage/test/commits/cdddc3941866854cdb41c023d0f5240ed10df053/comments","author":{"login":"darkmirage","id":1635019,"avatar_url":"https://secure.gravatar.com/avatar/5111569f6bba258cfe81d12af3ba99a2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png","gravatar_id":"5111569f6bba258cfe81d12af3ba99a2","url":"https://api.github.com/users/darkmirage","html_url":"https://github.com/darkmirage","followers_url":"https://api.github.com/users/darkmirage/followers","following_url":"https://api.github.com/users/darkmirage/following{/other_user}","gists_url":"https://api.github.com/users/darkmirage/gists{/gist_id}","starred_url":"https://api.github.com/users/darkmirage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darkmirage/subscriptions","organizations_url":"https://api.github.com/users/darkmirage/orgs","repos_url":"https://api.github.com/users/darkmirage/repos","events_url":"https://api.github.com/users/darkmirage/events{/privacy}","received_events_url":"https://api.github.com/users/darkmirage/received_events","type":"User"},"committer":{"login":"darkmirage","id":1635019,"avatar_url":"https://secure.gravatar.com/avatar/5111569f6bba258cfe81d12af3ba99a2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png","gravatar_id":"5111569f6bba258cfe81d12af3ba99a2","url":"https://api.github.com/users/darkmirage","html_url":"https://github.com/darkmirage","followers_url":"https://api.github.com/users/darkmirage/followers","following_url":"https://api.github.com/users/darkmirage/following{/other_user}","gists_url":"https://api.github.com/users/darkmirage/gists{/gist_id}","starred_url":"https://api.github.com/users/darkmirage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darkmirage/subscriptions","organizations_url":"https://api.github.com/users/darkmirage/orgs","repos_url":"https://api.github.com/users/darkmirage/repos","events_url":"https://api.github.com/users/darkmirage/events{/privacy}","received_events_url":"https://api.github.com/users/darkmirage/received_events","type":"User"},"parents":[{"sha":"9da46c5d5e0758a759f80de6283eba05c1f04735","url":"https://api.github.com/repos/darkmirage/test/commits/9da46c5d5e0758a759f80de6283eba05c1f04735","html_url":"https://github.com/darkmirage/test/commit/9da46c5d5e0758a759f80de6283eba05c1f04735"}]},"_links":{"self":"https://api.github.com/repos/darkmirage/test/branches/master","html":"https://github.com/darkmirage/test/tree/master"}}'
225
+ subfolder testing","tree":{"sha":"6553d302dfc55bf5cd09c07a6125753af023c7a5","url":"https://api.github.com/repos/darkmirage/test/git/trees/6553d302dfc55bf5cd09c07a6125753af023c7a5"},"url":"https://api.github.com/repos/darkmirage/test/git/commits/cdddc3941866854cdb41c023d0f5240ed10df053","comment_count":0},"url":"https://api.github.com/repos/darkmirage/test/commits/cdddc3941866854cdb41c023d0f5240ed10df053","html_url":"https://github.com/darkmirage/test/commit/cdddc3941866854cdb41c023d0f5240ed10df053","comments_url":"https://api.github.com/repos/darkmirage/test/commits/cdddc3941866854cdb41c023d0f5240ed10df053/comments","author":{"login":"darkmirage","id":1635019,"avatar_url":"https://0.gravatar.com/avatar/5111569f6bba258cfe81d12af3ba99a2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png","gravatar_id":"5111569f6bba258cfe81d12af3ba99a2","url":"https://api.github.com/users/darkmirage","html_url":"https://github.com/darkmirage","followers_url":"https://api.github.com/users/darkmirage/followers","following_url":"https://api.github.com/users/darkmirage/following{/other_user}","gists_url":"https://api.github.com/users/darkmirage/gists{/gist_id}","starred_url":"https://api.github.com/users/darkmirage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darkmirage/subscriptions","organizations_url":"https://api.github.com/users/darkmirage/orgs","repos_url":"https://api.github.com/users/darkmirage/repos","events_url":"https://api.github.com/users/darkmirage/events{/privacy}","received_events_url":"https://api.github.com/users/darkmirage/received_events","type":"User"},"committer":{"login":"darkmirage","id":1635019,"avatar_url":"https://0.gravatar.com/avatar/5111569f6bba258cfe81d12af3ba99a2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png","gravatar_id":"5111569f6bba258cfe81d12af3ba99a2","url":"https://api.github.com/users/darkmirage","html_url":"https://github.com/darkmirage","followers_url":"https://api.github.com/users/darkmirage/followers","following_url":"https://api.github.com/users/darkmirage/following{/other_user}","gists_url":"https://api.github.com/users/darkmirage/gists{/gist_id}","starred_url":"https://api.github.com/users/darkmirage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darkmirage/subscriptions","organizations_url":"https://api.github.com/users/darkmirage/orgs","repos_url":"https://api.github.com/users/darkmirage/repos","events_url":"https://api.github.com/users/darkmirage/events{/privacy}","received_events_url":"https://api.github.com/users/darkmirage/received_events","type":"User"},"parents":[{"sha":"9da46c5d5e0758a759f80de6283eba05c1f04735","url":"https://api.github.com/repos/darkmirage/test/commits/9da46c5d5e0758a759f80de6283eba05c1f04735","html_url":"https://github.com/darkmirage/test/commit/9da46c5d5e0758a759f80de6283eba05c1f04735"}]},"_links":{"self":"https://api.github.com/repos/darkmirage/test/branches/master","html":"https://github.com/darkmirage/test/tree/master"}}'
226
226
  http_version:
227
- recorded_at: Sat, 10 Aug 2013 00:14:59 GMT
227
+ recorded_at: Thu, 15 Aug 2013 21:09:47 GMT
228
228
  - request:
229
229
  method: post
230
230
  uri: https://api.github.com/repos/darkmirage/test/git/blobs
@@ -250,7 +250,7 @@ http_interactions:
250
250
  Server:
251
251
  - GitHub.com
252
252
  Date:
253
- - Sat, 10 Aug 2013 00:15:00 GMT
253
+ - Thu, 15 Aug 2013 21:09:48 GMT
254
254
  Content-Type:
255
255
  - application/json; charset=utf-8
256
256
  Status:
@@ -258,9 +258,9 @@ http_interactions:
258
258
  X-Ratelimit-Limit:
259
259
  - '5000'
260
260
  X-Ratelimit-Remaining:
261
- - '4907'
261
+ - '4719'
262
262
  X-Ratelimit-Reset:
263
- - '1376096590'
263
+ - '1376602835'
264
264
  X-Oauth-Scopes:
265
265
  - user, public_repo, repo, gist
266
266
  X-Accepted-Oauth-Scopes:
@@ -288,7 +288,7 @@ http_interactions:
288
288
  encoding: UTF-8
289
289
  string: '{"sha":"c024fc0376c148568229e0e5553f1b04c7708699","url":"https://api.github.com/repos/darkmirage/test/git/blobs/c024fc0376c148568229e0e5553f1b04c7708699"}'
290
290
  http_version:
291
- recorded_at: Sat, 10 Aug 2013 00:15:00 GMT
291
+ recorded_at: Thu, 15 Aug 2013 21:09:48 GMT
292
292
  - request:
293
293
  method: post
294
294
  uri: https://api.github.com/repos/darkmirage/test/git/trees
@@ -314,7 +314,7 @@ http_interactions:
314
314
  Server:
315
315
  - GitHub.com
316
316
  Date:
317
- - Sat, 10 Aug 2013 00:15:00 GMT
317
+ - Thu, 15 Aug 2013 21:09:49 GMT
318
318
  Content-Type:
319
319
  - application/json; charset=utf-8
320
320
  Status:
@@ -322,9 +322,9 @@ http_interactions:
322
322
  X-Ratelimit-Limit:
323
323
  - '5000'
324
324
  X-Ratelimit-Remaining:
325
- - '4906'
325
+ - '4718'
326
326
  X-Ratelimit-Reset:
327
- - '1376096590'
327
+ - '1376602835'
328
328
  X-Oauth-Scopes:
329
329
  - user, public_repo, repo, gist
330
330
  X-Accepted-Oauth-Scopes:
@@ -352,7 +352,7 @@ http_interactions:
352
352
  encoding: UTF-8
353
353
  string: '{"sha":"d048a5fd2027c76600084a3c313a5a7f12b0ba25","url":"https://api.github.com/repos/darkmirage/test/git/trees/d048a5fd2027c76600084a3c313a5a7f12b0ba25","tree":[{"mode":"100644","type":"blob","sha":"398cd945a422cff4321d613a3c5aef57b0b27da2","path":"LICENSE","size":1078,"url":"https://api.github.com/repos/darkmirage/test/git/blobs/398cd945a422cff4321d613a3c5aef57b0b27da2"},{"mode":"100644","type":"blob","sha":"453312977f72f7e37d96bdc6c5b5e4c9c59072f1","path":"README.md","size":20,"url":"https://api.github.com/repos/darkmirage/test/git/blobs/453312977f72f7e37d96bdc6c5b5e4c9c59072f1"},{"mode":"100644","type":"blob","sha":"38a226454dab3931dbb694b3c3ae94e02d110dcf","path":"file1","size":18,"url":"https://api.github.com/repos/darkmirage/test/git/blobs/38a226454dab3931dbb694b3c3ae94e02d110dcf"},{"mode":"040000","type":"tree","sha":"6d51570dab1f8b44bef454038c36ef0e9a69ca0d","path":"folder1","url":"https://api.github.com/repos/darkmirage/test/git/trees/6d51570dab1f8b44bef454038c36ef0e9a69ca0d"},{"mode":"040000","type":"tree","sha":"26a9ff72316b4b9af6481e28d3bb508c555d31a1","path":"folder2","url":"https://api.github.com/repos/darkmirage/test/git/trees/26a9ff72316b4b9af6481e28d3bb508c555d31a1"},{"mode":"040000","type":"tree","sha":"d750655104da52a0f691c399528a29cf5fa594c2","path":"folder3","url":"https://api.github.com/repos/darkmirage/test/git/trees/d750655104da52a0f691c399528a29cf5fa594c2"}]}'
354
354
  http_version:
355
- recorded_at: Sat, 10 Aug 2013 00:15:00 GMT
355
+ recorded_at: Thu, 15 Aug 2013 21:09:49 GMT
356
356
  - request:
357
357
  method: post
358
358
  uri: https://api.github.com/repos/darkmirage/test/git/blobs
@@ -378,7 +378,7 @@ http_interactions:
378
378
  Server:
379
379
  - GitHub.com
380
380
  Date:
381
- - Sat, 10 Aug 2013 00:15:06 GMT
381
+ - Thu, 15 Aug 2013 21:09:50 GMT
382
382
  Content-Type:
383
383
  - application/json; charset=utf-8
384
384
  Status:
@@ -386,9 +386,9 @@ http_interactions:
386
386
  X-Ratelimit-Limit:
387
387
  - '5000'
388
388
  X-Ratelimit-Remaining:
389
- - '4905'
389
+ - '4717'
390
390
  X-Ratelimit-Reset:
391
- - '1376096590'
391
+ - '1376602835'
392
392
  X-Oauth-Scopes:
393
393
  - user, public_repo, repo, gist
394
394
  X-Accepted-Oauth-Scopes:
@@ -416,7 +416,7 @@ http_interactions:
416
416
  encoding: UTF-8
417
417
  string: '{"sha":"5df468c4497e072139462b88cb78e1df4357534b","url":"https://api.github.com/repos/darkmirage/test/git/blobs/5df468c4497e072139462b88cb78e1df4357534b"}'
418
418
  http_version:
419
- recorded_at: Sat, 10 Aug 2013 00:15:06 GMT
419
+ recorded_at: Thu, 15 Aug 2013 21:09:50 GMT
420
420
  - request:
421
421
  method: post
422
422
  uri: https://api.github.com/repos/darkmirage/test/git/trees
@@ -442,7 +442,7 @@ http_interactions:
442
442
  Server:
443
443
  - GitHub.com
444
444
  Date:
445
- - Sat, 10 Aug 2013 00:15:07 GMT
445
+ - Thu, 15 Aug 2013 21:09:50 GMT
446
446
  Content-Type:
447
447
  - application/json; charset=utf-8
448
448
  Status:
@@ -450,9 +450,9 @@ http_interactions:
450
450
  X-Ratelimit-Limit:
451
451
  - '5000'
452
452
  X-Ratelimit-Remaining:
453
- - '4904'
453
+ - '4716'
454
454
  X-Ratelimit-Reset:
455
- - '1376096590'
455
+ - '1376602835'
456
456
  X-Oauth-Scopes:
457
457
  - user, public_repo, repo, gist
458
458
  X-Accepted-Oauth-Scopes:
@@ -480,7 +480,7 @@ http_interactions:
480
480
  encoding: UTF-8
481
481
  string: '{"sha":"0e063615e52e09d6fba6f2190083bc8a9323528f","url":"https://api.github.com/repos/darkmirage/test/git/trees/0e063615e52e09d6fba6f2190083bc8a9323528f","tree":[{"mode":"100644","type":"blob","sha":"398cd945a422cff4321d613a3c5aef57b0b27da2","path":"LICENSE","size":1078,"url":"https://api.github.com/repos/darkmirage/test/git/blobs/398cd945a422cff4321d613a3c5aef57b0b27da2"},{"mode":"100644","type":"blob","sha":"453312977f72f7e37d96bdc6c5b5e4c9c59072f1","path":"README.md","size":20,"url":"https://api.github.com/repos/darkmirage/test/git/blobs/453312977f72f7e37d96bdc6c5b5e4c9c59072f1"},{"mode":"100644","type":"blob","sha":"38a226454dab3931dbb694b3c3ae94e02d110dcf","path":"file1","size":18,"url":"https://api.github.com/repos/darkmirage/test/git/blobs/38a226454dab3931dbb694b3c3ae94e02d110dcf"},{"mode":"040000","type":"tree","sha":"6d51570dab1f8b44bef454038c36ef0e9a69ca0d","path":"folder1","url":"https://api.github.com/repos/darkmirage/test/git/trees/6d51570dab1f8b44bef454038c36ef0e9a69ca0d"},{"mode":"040000","type":"tree","sha":"d6c5d03064924906afd8288388dd9102380c6fe4","path":"folder2","url":"https://api.github.com/repos/darkmirage/test/git/trees/d6c5d03064924906afd8288388dd9102380c6fe4"},{"mode":"040000","type":"tree","sha":"d750655104da52a0f691c399528a29cf5fa594c2","path":"folder3","url":"https://api.github.com/repos/darkmirage/test/git/trees/d750655104da52a0f691c399528a29cf5fa594c2"}]}'
482
482
  http_version:
483
- recorded_at: Sat, 10 Aug 2013 00:15:07 GMT
483
+ recorded_at: Thu, 15 Aug 2013 21:09:50 GMT
484
484
  - request:
485
485
  method: get
486
486
  uri: https://api.github.com/repos/darkmirage/test/branches/rspec
@@ -504,7 +504,7 @@ http_interactions:
504
504
  Server:
505
505
  - GitHub.com
506
506
  Date:
507
- - Sat, 10 Aug 2013 00:15:07 GMT
507
+ - Thu, 15 Aug 2013 21:09:52 GMT
508
508
  Content-Type:
509
509
  - application/json; charset=utf-8
510
510
  Transfer-Encoding:
@@ -514,9 +514,9 @@ http_interactions:
514
514
  X-Ratelimit-Limit:
515
515
  - '5000'
516
516
  X-Ratelimit-Remaining:
517
- - '4903'
517
+ - '4715'
518
518
  X-Ratelimit-Reset:
519
- - '1376096590'
519
+ - '1376602835'
520
520
  X-Oauth-Scopes:
521
521
  - user, public_repo, repo, gist
522
522
  X-Accepted-Oauth-Scopes:
@@ -536,7 +536,7 @@ http_interactions:
536
536
  encoding: UTF-8
537
537
  string: '{"message":"Branch not found"}'
538
538
  http_version:
539
- recorded_at: Sat, 10 Aug 2013 00:15:07 GMT
539
+ recorded_at: Thu, 15 Aug 2013 21:09:52 GMT
540
540
  - request:
541
541
  method: get
542
542
  uri: https://api.github.com/repos/darkmirage/test/branches/master
@@ -560,7 +560,7 @@ http_interactions:
560
560
  Server:
561
561
  - GitHub.com
562
562
  Date:
563
- - Sat, 10 Aug 2013 00:15:08 GMT
563
+ - Thu, 15 Aug 2013 21:09:52 GMT
564
564
  Content-Type:
565
565
  - application/json; charset=utf-8
566
566
  Transfer-Encoding:
@@ -570,9 +570,9 @@ http_interactions:
570
570
  X-Ratelimit-Limit:
571
571
  - '5000'
572
572
  X-Ratelimit-Remaining:
573
- - '4902'
573
+ - '4714'
574
574
  X-Ratelimit-Reset:
575
- - '1376096590'
575
+ - '1376602835'
576
576
  X-Oauth-Scopes:
577
577
  - user, public_repo, repo, gist
578
578
  X-Accepted-Oauth-Scopes:
@@ -589,7 +589,7 @@ http_interactions:
589
589
  Access-Control-Allow-Origin:
590
590
  - '*'
591
591
  Etag:
592
- - '"9f1960e9f71a26ef10999b56127f5ff5"'
592
+ - '"1e9a35ec492ea865f92a1b38b774b076"'
593
593
  Cache-Control:
594
594
  - max-age=0, private, must-revalidate
595
595
  Vary:
@@ -599,9 +599,9 @@ http_interactions:
599
599
  string: '{"name":"master","commit":{"sha":"cdddc3941866854cdb41c023d0f5240ed10df053","commit":{"author":{"name":"Raven
600
600
  Jiang","email":"raven@cs.stanford.edu","date":"2013-08-09T23:23:24Z"},"committer":{"name":"Raven
601
601
  Jiang","email":"raven@cs.stanford.edu","date":"2013-08-09T23:23:24Z"},"message":"Added
602
- subfolder testing","tree":{"sha":"6553d302dfc55bf5cd09c07a6125753af023c7a5","url":"https://api.github.com/repos/darkmirage/test/git/trees/6553d302dfc55bf5cd09c07a6125753af023c7a5"},"url":"https://api.github.com/repos/darkmirage/test/git/commits/cdddc3941866854cdb41c023d0f5240ed10df053","comment_count":0},"url":"https://api.github.com/repos/darkmirage/test/commits/cdddc3941866854cdb41c023d0f5240ed10df053","html_url":"https://github.com/darkmirage/test/commit/cdddc3941866854cdb41c023d0f5240ed10df053","comments_url":"https://api.github.com/repos/darkmirage/test/commits/cdddc3941866854cdb41c023d0f5240ed10df053/comments","author":{"login":"darkmirage","id":1635019,"avatar_url":"https://secure.gravatar.com/avatar/5111569f6bba258cfe81d12af3ba99a2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png","gravatar_id":"5111569f6bba258cfe81d12af3ba99a2","url":"https://api.github.com/users/darkmirage","html_url":"https://github.com/darkmirage","followers_url":"https://api.github.com/users/darkmirage/followers","following_url":"https://api.github.com/users/darkmirage/following{/other_user}","gists_url":"https://api.github.com/users/darkmirage/gists{/gist_id}","starred_url":"https://api.github.com/users/darkmirage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darkmirage/subscriptions","organizations_url":"https://api.github.com/users/darkmirage/orgs","repos_url":"https://api.github.com/users/darkmirage/repos","events_url":"https://api.github.com/users/darkmirage/events{/privacy}","received_events_url":"https://api.github.com/users/darkmirage/received_events","type":"User"},"committer":{"login":"darkmirage","id":1635019,"avatar_url":"https://secure.gravatar.com/avatar/5111569f6bba258cfe81d12af3ba99a2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png","gravatar_id":"5111569f6bba258cfe81d12af3ba99a2","url":"https://api.github.com/users/darkmirage","html_url":"https://github.com/darkmirage","followers_url":"https://api.github.com/users/darkmirage/followers","following_url":"https://api.github.com/users/darkmirage/following{/other_user}","gists_url":"https://api.github.com/users/darkmirage/gists{/gist_id}","starred_url":"https://api.github.com/users/darkmirage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darkmirage/subscriptions","organizations_url":"https://api.github.com/users/darkmirage/orgs","repos_url":"https://api.github.com/users/darkmirage/repos","events_url":"https://api.github.com/users/darkmirage/events{/privacy}","received_events_url":"https://api.github.com/users/darkmirage/received_events","type":"User"},"parents":[{"sha":"9da46c5d5e0758a759f80de6283eba05c1f04735","url":"https://api.github.com/repos/darkmirage/test/commits/9da46c5d5e0758a759f80de6283eba05c1f04735","html_url":"https://github.com/darkmirage/test/commit/9da46c5d5e0758a759f80de6283eba05c1f04735"}]},"_links":{"self":"https://api.github.com/repos/darkmirage/test/branches/master","html":"https://github.com/darkmirage/test/tree/master"}}'
602
+ subfolder testing","tree":{"sha":"6553d302dfc55bf5cd09c07a6125753af023c7a5","url":"https://api.github.com/repos/darkmirage/test/git/trees/6553d302dfc55bf5cd09c07a6125753af023c7a5"},"url":"https://api.github.com/repos/darkmirage/test/git/commits/cdddc3941866854cdb41c023d0f5240ed10df053","comment_count":0},"url":"https://api.github.com/repos/darkmirage/test/commits/cdddc3941866854cdb41c023d0f5240ed10df053","html_url":"https://github.com/darkmirage/test/commit/cdddc3941866854cdb41c023d0f5240ed10df053","comments_url":"https://api.github.com/repos/darkmirage/test/commits/cdddc3941866854cdb41c023d0f5240ed10df053/comments","author":{"login":"darkmirage","id":1635019,"avatar_url":"https://0.gravatar.com/avatar/5111569f6bba258cfe81d12af3ba99a2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png","gravatar_id":"5111569f6bba258cfe81d12af3ba99a2","url":"https://api.github.com/users/darkmirage","html_url":"https://github.com/darkmirage","followers_url":"https://api.github.com/users/darkmirage/followers","following_url":"https://api.github.com/users/darkmirage/following{/other_user}","gists_url":"https://api.github.com/users/darkmirage/gists{/gist_id}","starred_url":"https://api.github.com/users/darkmirage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darkmirage/subscriptions","organizations_url":"https://api.github.com/users/darkmirage/orgs","repos_url":"https://api.github.com/users/darkmirage/repos","events_url":"https://api.github.com/users/darkmirage/events{/privacy}","received_events_url":"https://api.github.com/users/darkmirage/received_events","type":"User"},"committer":{"login":"darkmirage","id":1635019,"avatar_url":"https://0.gravatar.com/avatar/5111569f6bba258cfe81d12af3ba99a2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png","gravatar_id":"5111569f6bba258cfe81d12af3ba99a2","url":"https://api.github.com/users/darkmirage","html_url":"https://github.com/darkmirage","followers_url":"https://api.github.com/users/darkmirage/followers","following_url":"https://api.github.com/users/darkmirage/following{/other_user}","gists_url":"https://api.github.com/users/darkmirage/gists{/gist_id}","starred_url":"https://api.github.com/users/darkmirage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darkmirage/subscriptions","organizations_url":"https://api.github.com/users/darkmirage/orgs","repos_url":"https://api.github.com/users/darkmirage/repos","events_url":"https://api.github.com/users/darkmirage/events{/privacy}","received_events_url":"https://api.github.com/users/darkmirage/received_events","type":"User"},"parents":[{"sha":"9da46c5d5e0758a759f80de6283eba05c1f04735","url":"https://api.github.com/repos/darkmirage/test/commits/9da46c5d5e0758a759f80de6283eba05c1f04735","html_url":"https://github.com/darkmirage/test/commit/9da46c5d5e0758a759f80de6283eba05c1f04735"}]},"_links":{"self":"https://api.github.com/repos/darkmirage/test/branches/master","html":"https://github.com/darkmirage/test/tree/master"}}'
603
603
  http_version:
604
- recorded_at: Sat, 10 Aug 2013 00:15:08 GMT
604
+ recorded_at: Thu, 15 Aug 2013 21:09:52 GMT
605
605
  - request:
606
606
  method: post
607
607
  uri: https://api.github.com/repos/darkmirage/test/git/refs
@@ -627,7 +627,7 @@ http_interactions:
627
627
  Server:
628
628
  - GitHub.com
629
629
  Date:
630
- - Sat, 10 Aug 2013 00:15:09 GMT
630
+ - Thu, 15 Aug 2013 21:09:53 GMT
631
631
  Content-Type:
632
632
  - application/json; charset=utf-8
633
633
  Status:
@@ -635,9 +635,9 @@ http_interactions:
635
635
  X-Ratelimit-Limit:
636
636
  - '5000'
637
637
  X-Ratelimit-Remaining:
638
- - '4901'
638
+ - '4713'
639
639
  X-Ratelimit-Reset:
640
- - '1376096590'
640
+ - '1376602835'
641
641
  X-Oauth-Scopes:
642
642
  - user, public_repo, repo, gist
643
643
  X-Accepted-Oauth-Scopes:
@@ -665,7 +665,7 @@ http_interactions:
665
665
  encoding: UTF-8
666
666
  string: '{"ref":"refs/heads/rspec","url":"https://api.github.com/repos/darkmirage/test/git/refs/heads/rspec","object":{"sha":"cdddc3941866854cdb41c023d0f5240ed10df053","type":"commit","url":"https://api.github.com/repos/darkmirage/test/git/commits/cdddc3941866854cdb41c023d0f5240ed10df053"}}'
667
667
  http_version:
668
- recorded_at: Sat, 10 Aug 2013 00:15:09 GMT
668
+ recorded_at: Thu, 15 Aug 2013 21:09:53 GMT
669
669
  - request:
670
670
  method: post
671
671
  uri: https://api.github.com/repos/darkmirage/test/git/commits
@@ -691,7 +691,7 @@ http_interactions:
691
691
  Server:
692
692
  - GitHub.com
693
693
  Date:
694
- - Sat, 10 Aug 2013 00:15:09 GMT
694
+ - Thu, 15 Aug 2013 21:09:54 GMT
695
695
  Content-Type:
696
696
  - application/json; charset=utf-8
697
697
  Status:
@@ -699,15 +699,15 @@ http_interactions:
699
699
  X-Ratelimit-Limit:
700
700
  - '5000'
701
701
  X-Ratelimit-Remaining:
702
- - '4900'
702
+ - '4712'
703
703
  X-Ratelimit-Reset:
704
- - '1376096590'
704
+ - '1376602835'
705
705
  X-Oauth-Scopes:
706
706
  - user, public_repo, repo, gist
707
707
  X-Accepted-Oauth-Scopes:
708
708
  - repo, public_repo, repo:status, delete_repo, site_admin
709
709
  Location:
710
- - https://api.github.com/repos/darkmirage/test/git/commits/d84a306ec99d7b4886efc567e538723e1257ab7c
710
+ - https://api.github.com/repos/darkmirage/test/git/commits/4ed1674182867e74a5614fd6e0aacd5c846eb300
711
711
  X-Github-Media-Type:
712
712
  - github.beta; format=json
713
713
  X-Content-Type-Options:
@@ -722,23 +722,23 @@ http_interactions:
722
722
  Access-Control-Allow-Origin:
723
723
  - '*'
724
724
  Etag:
725
- - '"4bd16510d6e6e24199c1346481d1698e"'
725
+ - '"cd9347ae43f422ec19a1366d4f0e7a26"'
726
726
  Cache-Control:
727
727
  - max-age=0, private, must-revalidate
728
728
  body:
729
729
  encoding: UTF-8
730
- string: '{"sha":"d84a306ec99d7b4886efc567e538723e1257ab7c","url":"https://api.github.com/repos/darkmirage/test/git/commits/d84a306ec99d7b4886efc567e538723e1257ab7c","html_url":"https://github.com/darkmirage/test/commits/d84a306ec99d7b4886efc567e538723e1257ab7c","author":{"name":"Raven
731
- Jiang","email":"raven@cs.stanford.edu","date":"2013-08-10T00:15:09Z"},"committer":{"name":"Raven
732
- Jiang","email":"raven@cs.stanford.edu","date":"2013-08-10T00:15:09Z"},"tree":{"sha":"0e063615e52e09d6fba6f2190083bc8a9323528f","url":"https://api.github.com/repos/darkmirage/test/git/trees/0e063615e52e09d6fba6f2190083bc8a9323528f"},"message":"RSpec
730
+ string: '{"sha":"4ed1674182867e74a5614fd6e0aacd5c846eb300","url":"https://api.github.com/repos/darkmirage/test/git/commits/4ed1674182867e74a5614fd6e0aacd5c846eb300","html_url":"https://github.com/darkmirage/test/commits/4ed1674182867e74a5614fd6e0aacd5c846eb300","author":{"name":"Raven
731
+ Jiang","email":"raven@cs.stanford.edu","date":"2013-08-15T21:09:54Z"},"committer":{"name":"Raven
732
+ Jiang","email":"raven@cs.stanford.edu","date":"2013-08-15T21:09:54Z"},"tree":{"sha":"0e063615e52e09d6fba6f2190083bc8a9323528f","url":"https://api.github.com/repos/darkmirage/test/git/trees/0e063615e52e09d6fba6f2190083bc8a9323528f"},"message":"RSpec
733
733
  Test","parents":[{"sha":"cdddc3941866854cdb41c023d0f5240ed10df053","url":"https://api.github.com/repos/darkmirage/test/git/commits/cdddc3941866854cdb41c023d0f5240ed10df053","html_url":"https://github.com/darkmirage/test/commits/cdddc3941866854cdb41c023d0f5240ed10df053"}]}'
734
734
  http_version:
735
- recorded_at: Sat, 10 Aug 2013 00:15:09 GMT
735
+ recorded_at: Thu, 15 Aug 2013 21:09:54 GMT
736
736
  - request:
737
737
  method: patch
738
738
  uri: https://api.github.com/repos/darkmirage/test/git/refs/heads/rspec
739
739
  body:
740
740
  encoding: UTF-8
741
- string: '{"sha":"d84a306ec99d7b4886efc567e538723e1257ab7c","force":true}'
741
+ string: '{"sha":"4ed1674182867e74a5614fd6e0aacd5c846eb300","force":true}'
742
742
  headers:
743
743
  User-Agent:
744
744
  - Octokit Ruby Gem 1.25.0
@@ -758,7 +758,7 @@ http_interactions:
758
758
  Server:
759
759
  - GitHub.com
760
760
  Date:
761
- - Sat, 10 Aug 2013 00:15:10 GMT
761
+ - Thu, 15 Aug 2013 21:09:54 GMT
762
762
  Content-Type:
763
763
  - application/json; charset=utf-8
764
764
  Transfer-Encoding:
@@ -768,9 +768,9 @@ http_interactions:
768
768
  X-Ratelimit-Limit:
769
769
  - '5000'
770
770
  X-Ratelimit-Remaining:
771
- - '4899'
771
+ - '4711'
772
772
  X-Ratelimit-Reset:
773
- - '1376096590'
773
+ - '1376602835'
774
774
  X-Oauth-Scopes:
775
775
  - user, public_repo, repo, gist
776
776
  X-Accepted-Oauth-Scopes:
@@ -787,16 +787,16 @@ http_interactions:
787
787
  Access-Control-Allow-Origin:
788
788
  - '*'
789
789
  Etag:
790
- - '"4a006995a748a354d04c1954edf06e91"'
790
+ - '"1a0acc4dad09a7813bb3fa6856411b70"'
791
791
  Cache-Control:
792
792
  - max-age=0, private, must-revalidate
793
793
  Vary:
794
794
  - Accept-Encoding
795
795
  body:
796
796
  encoding: UTF-8
797
- string: '{"ref":"refs/heads/rspec","url":"https://api.github.com/repos/darkmirage/test/git/refs/heads/rspec","object":{"sha":"d84a306ec99d7b4886efc567e538723e1257ab7c","type":"commit","url":"https://api.github.com/repos/darkmirage/test/git/commits/d84a306ec99d7b4886efc567e538723e1257ab7c"}}'
797
+ string: '{"ref":"refs/heads/rspec","url":"https://api.github.com/repos/darkmirage/test/git/refs/heads/rspec","object":{"sha":"4ed1674182867e74a5614fd6e0aacd5c846eb300","type":"commit","url":"https://api.github.com/repos/darkmirage/test/git/commits/4ed1674182867e74a5614fd6e0aacd5c846eb300"}}'
798
798
  http_version:
799
- recorded_at: Sat, 10 Aug 2013 00:15:11 GMT
799
+ recorded_at: Thu, 15 Aug 2013 21:09:54 GMT
800
800
  - request:
801
801
  method: get
802
802
  uri: https://api.github.com/repos/darkmirage/test/git/refs/heads/rspec
@@ -820,7 +820,7 @@ http_interactions:
820
820
  Server:
821
821
  - GitHub.com
822
822
  Date:
823
- - Sat, 10 Aug 2013 00:15:11 GMT
823
+ - Thu, 15 Aug 2013 21:09:55 GMT
824
824
  Content-Type:
825
825
  - application/json; charset=utf-8
826
826
  Transfer-Encoding:
@@ -830,15 +830,15 @@ http_interactions:
830
830
  X-Ratelimit-Limit:
831
831
  - '5000'
832
832
  X-Ratelimit-Remaining:
833
- - '4898'
833
+ - '4710'
834
834
  X-Ratelimit-Reset:
835
- - '1376096590'
835
+ - '1376602835'
836
836
  Cache-Control:
837
837
  - private, max-age=60, s-maxage=60
838
838
  Last-Modified:
839
- - Sat, 10 Aug 2013 00:15:11 GMT
839
+ - Thu, 15 Aug 2013 21:09:55 GMT
840
840
  Etag:
841
- - '"9688e34c3e2bb2d4a3973a744259e643"'
841
+ - '"6b3e7d8393d73bfc957e6eae659e5741"'
842
842
  X-Oauth-Scopes:
843
843
  - user, public_repo, repo, gist
844
844
  X-Accepted-Oauth-Scopes:
@@ -859,12 +859,12 @@ http_interactions:
859
859
  - '*'
860
860
  body:
861
861
  encoding: UTF-8
862
- string: '{"ref":"refs/heads/rspec","url":"https://api.github.com/repos/darkmirage/test/git/refs/heads/rspec","object":{"sha":"d84a306ec99d7b4886efc567e538723e1257ab7c","type":"commit","url":"https://api.github.com/repos/darkmirage/test/git/commits/d84a306ec99d7b4886efc567e538723e1257ab7c"}}'
862
+ string: '{"ref":"refs/heads/rspec","url":"https://api.github.com/repos/darkmirage/test/git/refs/heads/rspec","object":{"sha":"4ed1674182867e74a5614fd6e0aacd5c846eb300","type":"commit","url":"https://api.github.com/repos/darkmirage/test/git/commits/4ed1674182867e74a5614fd6e0aacd5c846eb300"}}'
863
863
  http_version:
864
- recorded_at: Sat, 10 Aug 2013 00:15:11 GMT
864
+ recorded_at: Thu, 15 Aug 2013 21:09:55 GMT
865
865
  - request:
866
866
  method: get
867
- uri: https://api.github.com/repos/darkmirage/test/commits/d84a306ec99d7b4886efc567e538723e1257ab7c
867
+ uri: https://api.github.com/repos/darkmirage/test/commits/4ed1674182867e74a5614fd6e0aacd5c846eb300
868
868
  body:
869
869
  encoding: US-ASCII
870
870
  string: ''
@@ -885,7 +885,7 @@ http_interactions:
885
885
  Server:
886
886
  - GitHub.com
887
887
  Date:
888
- - Sat, 10 Aug 2013 00:15:11 GMT
888
+ - Thu, 15 Aug 2013 21:09:56 GMT
889
889
  Content-Type:
890
890
  - application/json; charset=utf-8
891
891
  Transfer-Encoding:
@@ -895,15 +895,15 @@ http_interactions:
895
895
  X-Ratelimit-Limit:
896
896
  - '5000'
897
897
  X-Ratelimit-Remaining:
898
- - '4897'
898
+ - '4709'
899
899
  X-Ratelimit-Reset:
900
- - '1376096590'
900
+ - '1376602835'
901
901
  Cache-Control:
902
902
  - private, max-age=60, s-maxage=60
903
903
  Last-Modified:
904
- - Sat, 10 Aug 2013 00:15:09 GMT
904
+ - Thu, 15 Aug 2013 21:09:54 GMT
905
905
  Etag:
906
- - '"fe2d235e3cc57d8cd102a93a532c9b44"'
906
+ - '"fe46cec1b4e9898a41f6686617425901"'
907
907
  X-Oauth-Scopes:
908
908
  - user, public_repo, repo, gist
909
909
  X-Accepted-Oauth-Scopes:
@@ -924,14 +924,14 @@ http_interactions:
924
924
  - '*'
925
925
  body:
926
926
  encoding: UTF-8
927
- string: '{"sha":"d84a306ec99d7b4886efc567e538723e1257ab7c","commit":{"author":{"name":"Raven
928
- Jiang","email":"raven@cs.stanford.edu","date":"2013-08-10T00:15:09Z"},"committer":{"name":"Raven
929
- Jiang","email":"raven@cs.stanford.edu","date":"2013-08-10T00:15:09Z"},"message":"RSpec
930
- Test","tree":{"sha":"0e063615e52e09d6fba6f2190083bc8a9323528f","url":"https://api.github.com/repos/darkmirage/test/git/trees/0e063615e52e09d6fba6f2190083bc8a9323528f"},"url":"https://api.github.com/repos/darkmirage/test/git/commits/d84a306ec99d7b4886efc567e538723e1257ab7c","comment_count":0},"url":"https://api.github.com/repos/darkmirage/test/commits/d84a306ec99d7b4886efc567e538723e1257ab7c","html_url":"https://github.com/darkmirage/test/commit/d84a306ec99d7b4886efc567e538723e1257ab7c","comments_url":"https://api.github.com/repos/darkmirage/test/commits/d84a306ec99d7b4886efc567e538723e1257ab7c/comments","author":{"login":"darkmirage","id":1635019,"avatar_url":"https://secure.gravatar.com/avatar/5111569f6bba258cfe81d12af3ba99a2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png","gravatar_id":"5111569f6bba258cfe81d12af3ba99a2","url":"https://api.github.com/users/darkmirage","html_url":"https://github.com/darkmirage","followers_url":"https://api.github.com/users/darkmirage/followers","following_url":"https://api.github.com/users/darkmirage/following{/other_user}","gists_url":"https://api.github.com/users/darkmirage/gists{/gist_id}","starred_url":"https://api.github.com/users/darkmirage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darkmirage/subscriptions","organizations_url":"https://api.github.com/users/darkmirage/orgs","repos_url":"https://api.github.com/users/darkmirage/repos","events_url":"https://api.github.com/users/darkmirage/events{/privacy}","received_events_url":"https://api.github.com/users/darkmirage/received_events","type":"User"},"committer":{"login":"darkmirage","id":1635019,"avatar_url":"https://secure.gravatar.com/avatar/5111569f6bba258cfe81d12af3ba99a2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png","gravatar_id":"5111569f6bba258cfe81d12af3ba99a2","url":"https://api.github.com/users/darkmirage","html_url":"https://github.com/darkmirage","followers_url":"https://api.github.com/users/darkmirage/followers","following_url":"https://api.github.com/users/darkmirage/following{/other_user}","gists_url":"https://api.github.com/users/darkmirage/gists{/gist_id}","starred_url":"https://api.github.com/users/darkmirage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darkmirage/subscriptions","organizations_url":"https://api.github.com/users/darkmirage/orgs","repos_url":"https://api.github.com/users/darkmirage/repos","events_url":"https://api.github.com/users/darkmirage/events{/privacy}","received_events_url":"https://api.github.com/users/darkmirage/received_events","type":"User"},"parents":[{"sha":"cdddc3941866854cdb41c023d0f5240ed10df053","url":"https://api.github.com/repos/darkmirage/test/commits/cdddc3941866854cdb41c023d0f5240ed10df053","html_url":"https://github.com/darkmirage/test/commit/cdddc3941866854cdb41c023d0f5240ed10df053"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"c024fc0376c148568229e0e5553f1b04c7708699","filename":"folder1/sr3.gif","status":"added","additions":0,"deletions":0,"changes":0,"blob_url":"https://github.com/darkmirage/test/blob/d84a306ec99d7b4886efc567e538723e1257ab7c/folder1/sr3.gif","raw_url":"https://github.com/darkmirage/test/raw/d84a306ec99d7b4886efc567e538723e1257ab7c/folder1/sr3.gif","contents_url":"https://api.github.com/repos/darkmirage/test/contents/folder1/sr3.gif?ref=d84a306ec99d7b4886efc567e538723e1257ab7c"},{"sha":"5df468c4497e072139462b88cb78e1df4357534b","filename":"folder2/test_file","status":"added","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/darkmirage/test/blob/d84a306ec99d7b4886efc567e538723e1257ab7c/folder2/test_file","raw_url":"https://github.com/darkmirage/test/raw/d84a306ec99d7b4886efc567e538723e1257ab7c/folder2/test_file","contents_url":"https://api.github.com/repos/darkmirage/test/contents/folder2/test_file?ref=d84a306ec99d7b4886efc567e538723e1257ab7c","patch":"@@
927
+ string: '{"sha":"4ed1674182867e74a5614fd6e0aacd5c846eb300","commit":{"author":{"name":"Raven
928
+ Jiang","email":"raven@cs.stanford.edu","date":"2013-08-15T21:09:54Z"},"committer":{"name":"Raven
929
+ Jiang","email":"raven@cs.stanford.edu","date":"2013-08-15T21:09:54Z"},"message":"RSpec
930
+ Test","tree":{"sha":"0e063615e52e09d6fba6f2190083bc8a9323528f","url":"https://api.github.com/repos/darkmirage/test/git/trees/0e063615e52e09d6fba6f2190083bc8a9323528f"},"url":"https://api.github.com/repos/darkmirage/test/git/commits/4ed1674182867e74a5614fd6e0aacd5c846eb300","comment_count":0},"url":"https://api.github.com/repos/darkmirage/test/commits/4ed1674182867e74a5614fd6e0aacd5c846eb300","html_url":"https://github.com/darkmirage/test/commit/4ed1674182867e74a5614fd6e0aacd5c846eb300","comments_url":"https://api.github.com/repos/darkmirage/test/commits/4ed1674182867e74a5614fd6e0aacd5c846eb300/comments","author":{"login":"darkmirage","id":1635019,"avatar_url":"https://0.gravatar.com/avatar/5111569f6bba258cfe81d12af3ba99a2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png","gravatar_id":"5111569f6bba258cfe81d12af3ba99a2","url":"https://api.github.com/users/darkmirage","html_url":"https://github.com/darkmirage","followers_url":"https://api.github.com/users/darkmirage/followers","following_url":"https://api.github.com/users/darkmirage/following{/other_user}","gists_url":"https://api.github.com/users/darkmirage/gists{/gist_id}","starred_url":"https://api.github.com/users/darkmirage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darkmirage/subscriptions","organizations_url":"https://api.github.com/users/darkmirage/orgs","repos_url":"https://api.github.com/users/darkmirage/repos","events_url":"https://api.github.com/users/darkmirage/events{/privacy}","received_events_url":"https://api.github.com/users/darkmirage/received_events","type":"User"},"committer":{"login":"darkmirage","id":1635019,"avatar_url":"https://0.gravatar.com/avatar/5111569f6bba258cfe81d12af3ba99a2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png","gravatar_id":"5111569f6bba258cfe81d12af3ba99a2","url":"https://api.github.com/users/darkmirage","html_url":"https://github.com/darkmirage","followers_url":"https://api.github.com/users/darkmirage/followers","following_url":"https://api.github.com/users/darkmirage/following{/other_user}","gists_url":"https://api.github.com/users/darkmirage/gists{/gist_id}","starred_url":"https://api.github.com/users/darkmirage/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/darkmirage/subscriptions","organizations_url":"https://api.github.com/users/darkmirage/orgs","repos_url":"https://api.github.com/users/darkmirage/repos","events_url":"https://api.github.com/users/darkmirage/events{/privacy}","received_events_url":"https://api.github.com/users/darkmirage/received_events","type":"User"},"parents":[{"sha":"cdddc3941866854cdb41c023d0f5240ed10df053","url":"https://api.github.com/repos/darkmirage/test/commits/cdddc3941866854cdb41c023d0f5240ed10df053","html_url":"https://github.com/darkmirage/test/commit/cdddc3941866854cdb41c023d0f5240ed10df053"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"c024fc0376c148568229e0e5553f1b04c7708699","filename":"folder1/sr3.gif","status":"added","additions":0,"deletions":0,"changes":0,"blob_url":"https://github.com/darkmirage/test/blob/4ed1674182867e74a5614fd6e0aacd5c846eb300/folder1/sr3.gif","raw_url":"https://github.com/darkmirage/test/raw/4ed1674182867e74a5614fd6e0aacd5c846eb300/folder1/sr3.gif","contents_url":"https://api.github.com/repos/darkmirage/test/contents/folder1/sr3.gif?ref=4ed1674182867e74a5614fd6e0aacd5c846eb300"},{"sha":"5df468c4497e072139462b88cb78e1df4357534b","filename":"folder2/test_file","status":"added","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/darkmirage/test/blob/4ed1674182867e74a5614fd6e0aacd5c846eb300/folder2/test_file","raw_url":"https://github.com/darkmirage/test/raw/4ed1674182867e74a5614fd6e0aacd5c846eb300/folder2/test_file","contents_url":"https://api.github.com/repos/darkmirage/test/contents/folder2/test_file?ref=4ed1674182867e74a5614fd6e0aacd5c846eb300","patch":"@@
931
931
  -0,0 +1 @@\n+This is a file used for RSpec tests involving Worochi::Item.\n\\
932
932
  No newline at end of file"}]}'
933
933
  http_version:
934
- recorded_at: Sat, 10 Aug 2013 00:15:12 GMT
934
+ recorded_at: Thu, 15 Aug 2013 21:09:56 GMT
935
935
  - request:
936
936
  method: delete
937
937
  uri: https://api.github.com/repos/darkmirage/test/git/refs/heads/rspec
@@ -955,15 +955,15 @@ http_interactions:
955
955
  Server:
956
956
  - GitHub.com
957
957
  Date:
958
- - Sat, 10 Aug 2013 00:15:12 GMT
958
+ - Thu, 15 Aug 2013 21:09:56 GMT
959
959
  Status:
960
960
  - 204 No Content
961
961
  X-Ratelimit-Limit:
962
962
  - '5000'
963
963
  X-Ratelimit-Remaining:
964
- - '4896'
964
+ - '4708'
965
965
  X-Ratelimit-Reset:
966
- - '1376096590'
966
+ - '1376602835'
967
967
  X-Oauth-Scopes:
968
968
  - user, public_repo, repo, gist
969
969
  X-Accepted-Oauth-Scopes:
@@ -985,5 +985,5 @@ http_interactions:
985
985
  encoding: UTF-8
986
986
  string: ''
987
987
  http_version:
988
- recorded_at: Sat, 10 Aug 2013 00:15:12 GMT
988
+ recorded_at: Thu, 15 Aug 2013 21:09:56 GMT
989
989
  recorded_with: VCR 2.5.0