bigrig 0.2.1 → 0.2.2

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 (86) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Gemfile.lock +3 -1
  4. data/bigrig.gemspec +1 -0
  5. data/lib/bigrig/dependency_graph.rb +3 -1
  6. data/lib/bigrig/version.rb +1 -1
  7. data/spec/bigrig/dependency_graph_spec.rb +10 -4
  8. data/spec/bigrig_spec.rb +44 -34
  9. data/spec/data/scan.json +2 -1
  10. data/spec/spec_helper.rb +1 -13
  11. data/spec/support/wait_for.rb +35 -0
  12. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_has_exited/should_remove_the_container.yml +46 -46
  13. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_is_running/kills_and_removes_the_container.yml +49 -49
  14. data/spec/vcr/Bigrig_DockerAdapter/_build/builds_the_given_directory.yml +8 -8
  15. data/spec/vcr/Bigrig_DockerAdapter/_build/passes_build_input_to_a_block.yml +4 -4
  16. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_does_not_exist/is_false.yml +8 -8
  17. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_exists/is_true.yml +9 -9
  18. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_does_not_exist/raise_a_ImageNotFoundError.yml +12 -12
  19. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_exists/returns_the_image_id.yml +12 -12
  20. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_does_not_exist/should_raise_an_error.yml +8 -8
  21. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_is_running/should_kill_the_container.yml +22 -22
  22. data/spec/vcr/Bigrig_DockerAdapter/_logs/streams_logs_to_a_block.yml +17 -17
  23. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_a_block_to_capture_output/should_capture_output.yml +4 -4
  24. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_does_not_exist/raises_a_RepoNotFoundError.yml +2 -2
  25. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_exists/returns_the_image_id.yml +6 -6
  26. data/spec/vcr/Bigrig_DockerAdapter/_push/given_credentials/will_pass_login_and_password.yml +36 -36
  27. data/spec/vcr/Bigrig_DockerAdapter/_push/should_push_the_image.yml +453 -77
  28. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_does_not_exist/raises_a_ContainerNotFoundError.yml +16 -16
  29. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_exists/should_remove_the_container.yml +32 -32
  30. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_is_running/raises_a_ContainerRunningError.yml +10 -10
  31. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_doesnt_exist/raises_an_error.yml +8 -8
  32. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_exists/removes_the_image.yml +28 -28
  33. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/starts_the_container_with_the_right_name.yml +27 -27
  34. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_env_variables/starts_the_container_with_env_set.yml +27 -27
  35. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_ports/starts_the_container_with_ports_exposed.yml +32 -32
  36. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_does_not_exist/returns_false.yml +8 -8
  37. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_not_running/returns_false.yml +11 -11
  38. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_running/returns_true.yml +13 -13
  39. data/spec/vcr/Bigrig_DockerAdapter/_tag/should_tag_the_image.yml +16 -16
  40. data/spec/vcr/Bigrig_LogAction/_perform/follows_the_log.yml +25 -25
  41. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_a_path/builds_the_image_before_starting_it.yml +20 -20
  42. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_ip/should_pass_hosts_to_container.yml +40 -40
  43. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_name/should_lookup_ips_for_hosts_with_a_hostname.yml +41 -41
  44. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_links/should_pass_links_to_the_right_container.yml +73 -73
  45. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/launches_both_containers_in_parallel.yml +52 -52
  46. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/spins_up_multiple_containers.yml +74 -74
  47. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/should_spin_up_a_single_container.yml +36 -36
  48. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/when_a_dead_container_exists/should_remove_existing_containers.yml +38 -38
  49. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes/should_pass_volumes_to_the_right_container.yml +40 -40
  50. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/should_pass_volumes_from_to_the_right_container.yml +73 -73
  51. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/starts_the_dependant_container_last.yml +52 -52
  52. data/spec/vcr/Bigrig_RunAction/_perform/when_activating_profiles_that_do_not_exist/ignores_the_missing_profile.yml +35 -35
  53. data/spec/vcr/Bigrig_RunAction/_perform/with_a_file_with_active_profiles/uses_the_overridden_image.yml +38 -38
  54. data/spec/vcr/bigrig/destroy/spec/data/single_json/kills_the_container.yml +14 -14
  55. data/spec/vcr/bigrig/dev/spec/data/dev_json/activates_the_dev_profile.yml +427 -37
  56. data/spec/vcr/bigrig/dev/spec/data/dev_json/destroys_containers_on_exit.yml +32 -32
  57. data/spec/vcr/bigrig/dev/spec/data/dev_json/starts_the_containers.yml +472 -76
  58. data/spec/vcr/bigrig/dev/spec/data/dev_json/tails_the_logs.yml +16 -16
  59. data/spec/vcr/bigrig/dev/spec/data/scan_json/leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +1544 -86
  60. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_dependant_containers_when_the_scanned_file_changes.yml +1725 -69
  61. data/spec/vcr/bigrig/dev/spec/data/scan_json/restarts_the_container_when_the_scanned_file_changes.yml +1536 -96
  62. data/spec/vcr/bigrig/logs/spec/data/log_json/tails_the_logs.yml +17 -17
  63. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/leaves_existing_env_values_alone.yml +11 -11
  64. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_env.yml +11 -11
  65. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_tag.yml +11 -11
  66. data/spec/vcr/bigrig/run/spec/data/single_json/sends_the_name_of_the_container_to_stdout.yml +9 -9
  67. data/spec/vcr/bigrig/run/spec/data/single_json/starts_the_container.yml +13 -13
  68. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/-c/cleans_the_image_when_its_done.yml +20 -20
  69. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/builds_and_pushes_the_image.yml +15 -15
  70. data/spec/vcr/bigrig_bin_bigrig_destroy_spec/data/single_json_kills_the_container.yml +21 -21
  71. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_activates_the_dev_profile.yml +105 -305
  72. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_starts_the_containers.yml +109 -307
  73. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_tails_the_logs.yml +116 -116
  74. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_leaves_unaffected_containers_alone_when_the_scanned_file_changes.yml +385 -382
  75. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_dependant_containers_when_the_scanned_file_changes.yml +357 -354
  76. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/scan_json_restarts_the_container_when_the_scanned_file_changes.yml +358 -1091
  77. data/spec/vcr/bigrig_bin_bigrig_logs_spec/data/log_json_tails_the_logs.yml +21 -21
  78. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_leaves_existing_env_values_alone.yml +24 -24
  79. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_env.yml +24 -24
  80. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_tag.yml +17 -17
  81. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_sends_the_name_of_the_container_to_stdout.yml +24 -24
  82. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_starts_the_container.yml +24 -24
  83. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_-c_cleans_the_image_when_its_done.yml +439 -63
  84. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_builds_and_pushes_the_image.yml +430 -54
  85. data/spec/waitfor_spec.rb +10 -0
  86. metadata +18 -2
@@ -19,7 +19,7 @@ http_interactions:
19
19
  Content-Type:
20
20
  - text/plain; charset=utf-8
21
21
  Date:
22
- - Thu, 09 Apr 2015 19:01:34 GMT
22
+ - Mon, 20 Apr 2015 23:27:30 GMT
23
23
  Content-Length:
24
24
  - '28'
25
25
  body:
@@ -27,7 +27,7 @@ http_interactions:
27
27
  string: |
28
28
  No such container: dev-test
29
29
  http_version:
30
- recorded_at: Thu, 09 Apr 2015 19:01:36 GMT
30
+ recorded_at: Mon, 20 Apr 2015 23:27:29 GMT
31
31
  - request:
32
32
  method: get
33
33
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -47,7 +47,7 @@ http_interactions:
47
47
  Content-Type:
48
48
  - text/plain; charset=utf-8
49
49
  Date:
50
- - Thu, 09 Apr 2015 19:01:34 GMT
50
+ - Mon, 20 Apr 2015 23:27:30 GMT
51
51
  Content-Length:
52
52
  - '28'
53
53
  body:
@@ -55,7 +55,7 @@ http_interactions:
55
55
  string: |
56
56
  No such container: dev-test
57
57
  http_version:
58
- recorded_at: Thu, 09 Apr 2015 19:01:36 GMT
58
+ recorded_at: Mon, 20 Apr 2015 23:27:29 GMT
59
59
  - request:
60
60
  method: get
61
61
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -75,7 +75,7 @@ http_interactions:
75
75
  Content-Type:
76
76
  - text/plain; charset=utf-8
77
77
  Date:
78
- - Thu, 09 Apr 2015 19:01:34 GMT
78
+ - Mon, 20 Apr 2015 23:27:30 GMT
79
79
  Content-Length:
80
80
  - '28'
81
81
  body:
@@ -83,7 +83,7 @@ http_interactions:
83
83
  string: |
84
84
  No such container: dev-test
85
85
  http_version:
86
- recorded_at: Thu, 09 Apr 2015 19:01:36 GMT
86
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
87
87
  - request:
88
88
  method: get
89
89
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -103,7 +103,7 @@ http_interactions:
103
103
  Content-Type:
104
104
  - text/plain; charset=utf-8
105
105
  Date:
106
- - Thu, 09 Apr 2015 19:01:34 GMT
106
+ - Mon, 20 Apr 2015 23:27:30 GMT
107
107
  Content-Length:
108
108
  - '28'
109
109
  body:
@@ -111,7 +111,7 @@ http_interactions:
111
111
  string: |
112
112
  No such container: dev-test
113
113
  http_version:
114
- recorded_at: Thu, 09 Apr 2015 19:01:36 GMT
114
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
115
115
  - request:
116
116
  method: get
117
117
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -131,7 +131,7 @@ http_interactions:
131
131
  Content-Type:
132
132
  - text/plain; charset=utf-8
133
133
  Date:
134
- - Thu, 09 Apr 2015 19:01:34 GMT
134
+ - Mon, 20 Apr 2015 23:27:30 GMT
135
135
  Content-Length:
136
136
  - '28'
137
137
  body:
@@ -139,7 +139,7 @@ http_interactions:
139
139
  string: |
140
140
  No such container: dev-logs
141
141
  http_version:
142
- recorded_at: Thu, 09 Apr 2015 19:01:36 GMT
142
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
143
143
  - request:
144
144
  method: get
145
145
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -159,7 +159,7 @@ http_interactions:
159
159
  Content-Type:
160
160
  - text/plain; charset=utf-8
161
161
  Date:
162
- - Thu, 09 Apr 2015 19:01:34 GMT
162
+ - Mon, 20 Apr 2015 23:27:30 GMT
163
163
  Content-Length:
164
164
  - '28'
165
165
  body:
@@ -167,7 +167,7 @@ http_interactions:
167
167
  string: |
168
168
  No such container: dev-logs
169
169
  http_version:
170
- recorded_at: Thu, 09 Apr 2015 19:01:36 GMT
170
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
171
171
  - request:
172
172
  method: get
173
173
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -187,7 +187,7 @@ http_interactions:
187
187
  Content-Type:
188
188
  - text/plain; charset=utf-8
189
189
  Date:
190
- - Thu, 09 Apr 2015 19:01:34 GMT
190
+ - Mon, 20 Apr 2015 23:27:30 GMT
191
191
  Content-Length:
192
192
  - '28'
193
193
  body:
@@ -195,7 +195,7 @@ http_interactions:
195
195
  string: |
196
196
  No such container: dev-logs
197
197
  http_version:
198
- recorded_at: Thu, 09 Apr 2015 19:01:36 GMT
198
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
199
199
  - request:
200
200
  method: get
201
201
  uri: "<DOCKER_HOST>/v1.16/containers/dev-logs/json"
@@ -215,7 +215,7 @@ http_interactions:
215
215
  Content-Type:
216
216
  - text/plain; charset=utf-8
217
217
  Date:
218
- - Thu, 09 Apr 2015 19:01:34 GMT
218
+ - Mon, 20 Apr 2015 23:27:30 GMT
219
219
  Content-Length:
220
220
  - '28'
221
221
  body:
@@ -223,7 +223,7 @@ http_interactions:
223
223
  string: |
224
224
  No such container: dev-logs
225
225
  http_version:
226
- recorded_at: Thu, 09 Apr 2015 19:01:36 GMT
226
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
227
227
  - request:
228
228
  method: get
229
229
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -243,7 +243,7 @@ http_interactions:
243
243
  Content-Type:
244
244
  - text/plain; charset=utf-8
245
245
  Date:
246
- - Thu, 09 Apr 2015 19:01:34 GMT
246
+ - Mon, 20 Apr 2015 23:27:30 GMT
247
247
  Content-Length:
248
248
  - '28'
249
249
  body:
@@ -251,7 +251,7 @@ http_interactions:
251
251
  string: |
252
252
  No such container: dev-test
253
253
  http_version:
254
- recorded_at: Thu, 09 Apr 2015 19:01:36 GMT
254
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
255
255
  - request:
256
256
  method: get
257
257
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -271,7 +271,7 @@ http_interactions:
271
271
  Content-Type:
272
272
  - text/plain; charset=utf-8
273
273
  Date:
274
- - Thu, 09 Apr 2015 19:01:34 GMT
274
+ - Mon, 20 Apr 2015 23:27:30 GMT
275
275
  Content-Length:
276
276
  - '28'
277
277
  body:
@@ -279,7 +279,7 @@ http_interactions:
279
279
  string: |
280
280
  No such container: dev-test
281
281
  http_version:
282
- recorded_at: Thu, 09 Apr 2015 19:01:36 GMT
282
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
283
283
  - request:
284
284
  method: get
285
285
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -299,7 +299,7 @@ http_interactions:
299
299
  Content-Type:
300
300
  - text/plain; charset=utf-8
301
301
  Date:
302
- - Thu, 09 Apr 2015 19:01:34 GMT
302
+ - Mon, 20 Apr 2015 23:27:30 GMT
303
303
  Content-Length:
304
304
  - '28'
305
305
  body:
@@ -307,7 +307,7 @@ http_interactions:
307
307
  string: |
308
308
  No such container: dev-test
309
309
  http_version:
310
- recorded_at: Thu, 09 Apr 2015 19:01:36 GMT
310
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
311
311
  - request:
312
312
  method: get
313
313
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -327,7 +327,7 @@ http_interactions:
327
327
  Content-Type:
328
328
  - text/plain; charset=utf-8
329
329
  Date:
330
- - Thu, 09 Apr 2015 19:01:34 GMT
330
+ - Mon, 20 Apr 2015 23:27:30 GMT
331
331
  Content-Length:
332
332
  - '28'
333
333
  body:
@@ -335,7 +335,7 @@ http_interactions:
335
335
  string: |
336
336
  No such container: dev-test
337
337
  http_version:
338
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
338
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
339
339
  - request:
340
340
  method: get
341
341
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -355,7 +355,7 @@ http_interactions:
355
355
  Content-Type:
356
356
  - text/plain; charset=utf-8
357
357
  Date:
358
- - Thu, 09 Apr 2015 19:01:34 GMT
358
+ - Mon, 20 Apr 2015 23:27:30 GMT
359
359
  Content-Length:
360
360
  - '28'
361
361
  body:
@@ -363,7 +363,7 @@ http_interactions:
363
363
  string: |
364
364
  No such container: dev-test
365
365
  http_version:
366
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
366
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
367
367
  - request:
368
368
  method: get
369
369
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -383,7 +383,7 @@ http_interactions:
383
383
  Content-Type:
384
384
  - text/plain; charset=utf-8
385
385
  Date:
386
- - Thu, 09 Apr 2015 19:01:34 GMT
386
+ - Mon, 20 Apr 2015 23:27:30 GMT
387
387
  Content-Length:
388
388
  - '28'
389
389
  body:
@@ -391,7 +391,7 @@ http_interactions:
391
391
  string: |
392
392
  No such container: dev-test
393
393
  http_version:
394
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
394
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
395
395
  - request:
396
396
  method: get
397
397
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -411,7 +411,7 @@ http_interactions:
411
411
  Content-Type:
412
412
  - text/plain; charset=utf-8
413
413
  Date:
414
- - Thu, 09 Apr 2015 19:01:35 GMT
414
+ - Mon, 20 Apr 2015 23:27:30 GMT
415
415
  Content-Length:
416
416
  - '28'
417
417
  body:
@@ -419,7 +419,7 @@ http_interactions:
419
419
  string: |
420
420
  No such container: dev-test
421
421
  http_version:
422
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
422
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
423
423
  - request:
424
424
  method: get
425
425
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -439,7 +439,7 @@ http_interactions:
439
439
  Content-Type:
440
440
  - text/plain; charset=utf-8
441
441
  Date:
442
- - Thu, 09 Apr 2015 19:01:35 GMT
442
+ - Mon, 20 Apr 2015 23:27:30 GMT
443
443
  Content-Length:
444
444
  - '28'
445
445
  body:
@@ -447,7 +447,343 @@ http_interactions:
447
447
  string: |
448
448
  No such container: dev-test
449
449
  http_version:
450
- recorded_at: Thu, 09 Apr 2015 19:01:37 GMT
450
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
451
+ - request:
452
+ method: get
453
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
454
+ body:
455
+ encoding: US-ASCII
456
+ string: ''
457
+ headers:
458
+ User-Agent:
459
+ - Swipely/Docker-API 1.20.0
460
+ Content-Type:
461
+ - text/plain
462
+ response:
463
+ status:
464
+ code: 404
465
+ message:
466
+ headers:
467
+ Content-Type:
468
+ - text/plain; charset=utf-8
469
+ Date:
470
+ - Mon, 20 Apr 2015 23:27:30 GMT
471
+ Content-Length:
472
+ - '28'
473
+ body:
474
+ encoding: UTF-8
475
+ string: |
476
+ No such container: dev-test
477
+ http_version:
478
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
479
+ - request:
480
+ method: get
481
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
482
+ body:
483
+ encoding: US-ASCII
484
+ string: ''
485
+ headers:
486
+ User-Agent:
487
+ - Swipely/Docker-API 1.20.0
488
+ Content-Type:
489
+ - text/plain
490
+ response:
491
+ status:
492
+ code: 404
493
+ message:
494
+ headers:
495
+ Content-Type:
496
+ - text/plain; charset=utf-8
497
+ Date:
498
+ - Mon, 20 Apr 2015 23:27:31 GMT
499
+ Content-Length:
500
+ - '28'
501
+ body:
502
+ encoding: UTF-8
503
+ string: |
504
+ No such container: dev-test
505
+ http_version:
506
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
507
+ - request:
508
+ method: get
509
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
510
+ body:
511
+ encoding: US-ASCII
512
+ string: ''
513
+ headers:
514
+ User-Agent:
515
+ - Swipely/Docker-API 1.20.0
516
+ Content-Type:
517
+ - text/plain
518
+ response:
519
+ status:
520
+ code: 404
521
+ message:
522
+ headers:
523
+ Content-Type:
524
+ - text/plain; charset=utf-8
525
+ Date:
526
+ - Mon, 20 Apr 2015 23:27:31 GMT
527
+ Content-Length:
528
+ - '28'
529
+ body:
530
+ encoding: UTF-8
531
+ string: |
532
+ No such container: dev-test
533
+ http_version:
534
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
535
+ - request:
536
+ method: get
537
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
538
+ body:
539
+ encoding: US-ASCII
540
+ string: ''
541
+ headers:
542
+ User-Agent:
543
+ - Swipely/Docker-API 1.20.0
544
+ Content-Type:
545
+ - text/plain
546
+ response:
547
+ status:
548
+ code: 404
549
+ message:
550
+ headers:
551
+ Content-Type:
552
+ - text/plain; charset=utf-8
553
+ Date:
554
+ - Mon, 20 Apr 2015 23:27:31 GMT
555
+ Content-Length:
556
+ - '28'
557
+ body:
558
+ encoding: UTF-8
559
+ string: |
560
+ No such container: dev-test
561
+ http_version:
562
+ recorded_at: Mon, 20 Apr 2015 23:27:30 GMT
563
+ - request:
564
+ method: get
565
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
566
+ body:
567
+ encoding: US-ASCII
568
+ string: ''
569
+ headers:
570
+ User-Agent:
571
+ - Swipely/Docker-API 1.20.0
572
+ Content-Type:
573
+ - text/plain
574
+ response:
575
+ status:
576
+ code: 404
577
+ message:
578
+ headers:
579
+ Content-Type:
580
+ - text/plain; charset=utf-8
581
+ Date:
582
+ - Mon, 20 Apr 2015 23:27:31 GMT
583
+ Content-Length:
584
+ - '28'
585
+ body:
586
+ encoding: UTF-8
587
+ string: |
588
+ No such container: dev-test
589
+ http_version:
590
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
591
+ - request:
592
+ method: get
593
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
594
+ body:
595
+ encoding: US-ASCII
596
+ string: ''
597
+ headers:
598
+ User-Agent:
599
+ - Swipely/Docker-API 1.20.0
600
+ Content-Type:
601
+ - text/plain
602
+ response:
603
+ status:
604
+ code: 404
605
+ message:
606
+ headers:
607
+ Content-Type:
608
+ - text/plain; charset=utf-8
609
+ Date:
610
+ - Mon, 20 Apr 2015 23:27:31 GMT
611
+ Content-Length:
612
+ - '28'
613
+ body:
614
+ encoding: UTF-8
615
+ string: |
616
+ No such container: dev-test
617
+ http_version:
618
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
619
+ - request:
620
+ method: get
621
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
622
+ body:
623
+ encoding: US-ASCII
624
+ string: ''
625
+ headers:
626
+ User-Agent:
627
+ - Swipely/Docker-API 1.20.0
628
+ Content-Type:
629
+ - text/plain
630
+ response:
631
+ status:
632
+ code: 404
633
+ message:
634
+ headers:
635
+ Content-Type:
636
+ - text/plain; charset=utf-8
637
+ Date:
638
+ - Mon, 20 Apr 2015 23:27:31 GMT
639
+ Content-Length:
640
+ - '28'
641
+ body:
642
+ encoding: UTF-8
643
+ string: |
644
+ No such container: dev-test
645
+ http_version:
646
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
647
+ - request:
648
+ method: get
649
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
650
+ body:
651
+ encoding: US-ASCII
652
+ string: ''
653
+ headers:
654
+ User-Agent:
655
+ - Swipely/Docker-API 1.20.0
656
+ Content-Type:
657
+ - text/plain
658
+ response:
659
+ status:
660
+ code: 404
661
+ message:
662
+ headers:
663
+ Content-Type:
664
+ - text/plain; charset=utf-8
665
+ Date:
666
+ - Mon, 20 Apr 2015 23:27:31 GMT
667
+ Content-Length:
668
+ - '28'
669
+ body:
670
+ encoding: UTF-8
671
+ string: |
672
+ No such container: dev-test
673
+ http_version:
674
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
675
+ - request:
676
+ method: get
677
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
678
+ body:
679
+ encoding: US-ASCII
680
+ string: ''
681
+ headers:
682
+ User-Agent:
683
+ - Swipely/Docker-API 1.20.0
684
+ Content-Type:
685
+ - text/plain
686
+ response:
687
+ status:
688
+ code: 404
689
+ message:
690
+ headers:
691
+ Content-Type:
692
+ - text/plain; charset=utf-8
693
+ Date:
694
+ - Mon, 20 Apr 2015 23:27:31 GMT
695
+ Content-Length:
696
+ - '28'
697
+ body:
698
+ encoding: UTF-8
699
+ string: |
700
+ No such container: dev-test
701
+ http_version:
702
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
703
+ - request:
704
+ method: get
705
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
706
+ body:
707
+ encoding: US-ASCII
708
+ string: ''
709
+ headers:
710
+ User-Agent:
711
+ - Swipely/Docker-API 1.20.0
712
+ Content-Type:
713
+ - text/plain
714
+ response:
715
+ status:
716
+ code: 404
717
+ message:
718
+ headers:
719
+ Content-Type:
720
+ - text/plain; charset=utf-8
721
+ Date:
722
+ - Mon, 20 Apr 2015 23:27:31 GMT
723
+ Content-Length:
724
+ - '28'
725
+ body:
726
+ encoding: UTF-8
727
+ string: |
728
+ No such container: dev-test
729
+ http_version:
730
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
731
+ - request:
732
+ method: get
733
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
734
+ body:
735
+ encoding: US-ASCII
736
+ string: ''
737
+ headers:
738
+ User-Agent:
739
+ - Swipely/Docker-API 1.20.0
740
+ Content-Type:
741
+ - text/plain
742
+ response:
743
+ status:
744
+ code: 404
745
+ message:
746
+ headers:
747
+ Content-Type:
748
+ - text/plain; charset=utf-8
749
+ Date:
750
+ - Mon, 20 Apr 2015 23:27:31 GMT
751
+ Content-Length:
752
+ - '28'
753
+ body:
754
+ encoding: UTF-8
755
+ string: |
756
+ No such container: dev-test
757
+ http_version:
758
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
759
+ - request:
760
+ method: get
761
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
762
+ body:
763
+ encoding: US-ASCII
764
+ string: ''
765
+ headers:
766
+ User-Agent:
767
+ - Swipely/Docker-API 1.20.0
768
+ Content-Type:
769
+ - text/plain
770
+ response:
771
+ status:
772
+ code: 404
773
+ message:
774
+ headers:
775
+ Content-Type:
776
+ - text/plain; charset=utf-8
777
+ Date:
778
+ - Mon, 20 Apr 2015 23:27:31 GMT
779
+ Content-Length:
780
+ - '28'
781
+ body:
782
+ encoding: UTF-8
783
+ string: |
784
+ No such container: dev-test
785
+ http_version:
786
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
451
787
  - request:
452
788
  method: get
453
789
  uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
@@ -467,15 +803,69 @@ http_interactions:
467
803
  Content-Type:
468
804
  - application/json
469
805
  Date:
470
- - Thu, 09 Apr 2015 19:01:35 GMT
806
+ - Mon, 20 Apr 2015 23:27:31 GMT
471
807
  Content-Length:
472
808
  - '1998'
473
809
  body:
474
810
  encoding: UTF-8
475
811
  string: |
476
- {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"c6e6e663983e","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-09T19:01:35.595354943Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"c6e6e663983e9da77c292788bfd628ea94bebb5f8e2581c5b0407d7de527a6e3","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":null,"VolumesRW":null}
812
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"960c2e7a4d1c","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:31.799583937Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":null,"VolumesRW":null}
813
+ http_version:
814
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
815
+ - request:
816
+ method: get
817
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
818
+ body:
819
+ encoding: US-ASCII
820
+ string: ''
821
+ headers:
822
+ User-Agent:
823
+ - Swipely/Docker-API 1.20.0
824
+ Content-Type:
825
+ - text/plain
826
+ response:
827
+ status:
828
+ code: 200
829
+ message:
830
+ headers:
831
+ Content-Type:
832
+ - application/json
833
+ Date:
834
+ - Mon, 20 Apr 2015 23:27:31 GMT
835
+ Content-Length:
836
+ - '1994'
837
+ body:
838
+ encoding: UTF-8
839
+ string: |
840
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"960c2e7a4d1c","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:31.799583937Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":null,"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":null,"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":null,"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":null},"HostnamePath":"","HostsPath":"","Id":"960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"","Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"","IPPrefixLen":0,"IPv6Gateway":"","LinkLocalIPv6Address":"","LinkLocalIPv6PrefixLen":0,"MacAddress":"","PortMapping":null,"Ports":null},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":0,"Restarting":false,"Running":false,"StartedAt":"0001-01-01T00:00:00Z"},"Volumes":{},"VolumesRW":{}}
841
+ http_version:
842
+ recorded_at: Mon, 20 Apr 2015 23:27:31 GMT
843
+ - request:
844
+ method: get
845
+ uri: "<DOCKER_HOST>/v1.16/containers/dev-test/json"
846
+ body:
847
+ encoding: US-ASCII
848
+ string: ''
849
+ headers:
850
+ User-Agent:
851
+ - Swipely/Docker-API 1.20.0
852
+ Content-Type:
853
+ - text/plain
854
+ response:
855
+ status:
856
+ code: 200
857
+ message:
858
+ headers:
859
+ Content-Type:
860
+ - application/json
861
+ Date:
862
+ - Mon, 20 Apr 2015 23:27:32 GMT
863
+ body:
864
+ encoding: UTF-8
865
+ string: |
866
+ {"AppArmorProfile":"","Args":["-c","ruby /code/server.rb"],"Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":["/bin/sh","-c","ruby /code/server.rb"],"Env":["PROFILE=dev","PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","RUBY_MAJOR=2.1","RUBY_VERSION=2.1.3","GEM_HOME=/usr/local/bundle","BUNDLE_APP_CONFIG=/usr/local/bundle"],"ExposedPorts":{"80/tcp":{}},"Hostname":"960c2e7a4d1c","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-04-20T23:27:31.799583937Z","Driver":"aufs","ExecDriver":"native-0.2","ExecIDs":null,"HostConfig":{"Binds":[],"CapAdd":null,"CapDrop":null,"ContainerIDFile":"","Devices":null,"Dns":null,"DnsSearch":null,"ExtraHosts":[],"IpcMode":"","Links":null,"LxcConf":null,"NetworkMode":"","PidMode":"","PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"4568"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":null,"VolumesFrom":[]},"HostnamePath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hostname","HostsPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/hosts","Id":"960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1","Image":"b9c5be3a918d80b0d898ed8eca3fc76f75c482b531238e539cb00f75bb4e12d2","MountLabel":"","Name":"/dev-test","NetworkSettings":{"Bridge":"docker0","Gateway":"172.17.42.1","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"IPAddress":"172.17.7.179","IPPrefixLen":16,"IPv6Gateway":"","LinkLocalIPv6Address":"fe80::42:acff:fe11:7b3","LinkLocalIPv6PrefixLen":64,"MacAddress":"02:42:ac:11:07:b3","PortMapping":null,"Ports":{"80/tcp":[{"HostIp":"0.0.0.0","HostPort":"4568"}]}},"Path":"/bin/sh","ProcessLabel":"","ResolvConfPath":"/mnt/sda1/var/lib/docker/containers/960c2e7a4d1c9d5cbfe81b1a14bf673827ecd89627620c882ffb35f7ebdb54e1/resolv.conf","RestartCount":0,"State":{"Error":"","ExitCode":0,"FinishedAt":"0001-01-01T00:00:00Z","OOMKilled":false,"Paused":false,"Pid":13069,"Restarting":false,"Running":true,"StartedAt":"2015-04-20T23:27:32.387948273Z"},"Volumes":{},"VolumesRW":{}}
477
867
  http_version:
478
- recorded_at: Thu, 09 Apr 2015 19:01:38 GMT
868
+ recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
479
869
  - request:
480
870
  method: get
481
871
  uri: "<TEST_URL>/"
@@ -502,12 +892,12 @@ http_interactions:
502
892
  BUNDLE_APP_CONFIG=/usr/local/bundle
503
893
  GEM_HOME=/usr/local/bundle
504
894
  HOME=/root
505
- HOSTNAME=c6e6e663983e
895
+ HOSTNAME=960c2e7a4d1c
506
896
  PATH=/usr/local/bundle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
507
897
  PROFILE=dev
508
898
  PWD=/
509
899
  RUBY_MAJOR=2.1
510
900
  RUBY_VERSION=2.1.3
511
901
  http_version:
512
- recorded_at: Thu, 09 Apr 2015 19:01:40 GMT
902
+ recorded_at: Mon, 20 Apr 2015 23:27:32 GMT
513
903
  recorded_with: VCR 2.9.3