bigrig 0.0.0 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (146) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rspec +3 -0
  4. data/.rubocop.yml +20 -0
  5. data/.travis.yml +3 -0
  6. data/CHANGELOG.md +19 -0
  7. data/Gemfile +2 -0
  8. data/Gemfile.lock +84 -0
  9. data/LICENSE +28 -0
  10. data/README.md +191 -0
  11. data/Rakefile +10 -0
  12. data/bigrig.gemspec +29 -0
  13. data/bin/bigrig +113 -0
  14. data/lib/bigrig/actions/destroy_action.rb +21 -0
  15. data/lib/bigrig/actions/dev_action.rb +19 -0
  16. data/lib/bigrig/actions/log_action.rb +45 -0
  17. data/lib/bigrig/actions/run_action.rb +14 -0
  18. data/lib/bigrig/actions/ship_action.rb +51 -0
  19. data/lib/bigrig/actions.rb +5 -0
  20. data/lib/bigrig/dependency_graph.rb +21 -0
  21. data/lib/bigrig/descriptor.rb +43 -0
  22. data/lib/bigrig/docker_adapter.rb +129 -0
  23. data/lib/bigrig/models/application.rb +22 -0
  24. data/lib/bigrig/models/base_model.rb +7 -0
  25. data/lib/bigrig/models/container.rb +40 -0
  26. data/lib/bigrig/models.rb +3 -0
  27. data/lib/bigrig/output_parser.rb +52 -0
  28. data/lib/bigrig/runner.rb +94 -0
  29. data/lib/bigrig/version.rb +3 -0
  30. data/lib/bigrig.rb +8 -0
  31. data/spec/bigrig/actions/destroy_action_spec.rb +55 -0
  32. data/spec/bigrig/actions/dev_action_spec.rb +17 -0
  33. data/spec/bigrig/actions/log_action_spec.rb +33 -0
  34. data/spec/bigrig/actions/run_action_spec.rb +270 -0
  35. data/spec/bigrig/actions/ship_action_spec.rb +82 -0
  36. data/spec/bigrig/dependency_graph_spec.rb +19 -0
  37. data/spec/bigrig/descriptor_spec.rb +56 -0
  38. data/spec/bigrig/docker_adapter_spec.rb +409 -0
  39. data/spec/bigrig/models/application_spec.rb +32 -0
  40. data/spec/bigrig/models/container_spec.rb +115 -0
  41. data/spec/bigrig/output_parser_spec.rb +71 -0
  42. data/spec/bigrig_spec.rb +249 -0
  43. data/spec/data/addscontainer.json +24 -0
  44. data/spec/data/build/Dockerfile +2 -0
  45. data/spec/data/build/test +0 -0
  46. data/spec/data/dev.json +26 -0
  47. data/spec/data/duplicate.json +13 -0
  48. data/spec/data/env.json +12 -0
  49. data/spec/data/hosts_ip.json +12 -0
  50. data/spec/data/hosts_name.json +11 -0
  51. data/spec/data/links.json +13 -0
  52. data/spec/data/log.json +8 -0
  53. data/spec/data/multiple.json +13 -0
  54. data/spec/data/path.json +5 -0
  55. data/spec/data/ports.json +9 -0
  56. data/spec/data/profiles.json +24 -0
  57. data/spec/data/ship.json +5 -0
  58. data/spec/data/single.json +8 -0
  59. data/spec/data/tagandpath.json +24 -0
  60. data/spec/data/tiny-image.tar +0 -0
  61. data/spec/data/volumes.json +13 -0
  62. data/spec/spec_helper.rb +104 -0
  63. data/spec/support/bigrig_vcr +8 -0
  64. data/spec/support/vcr.rb +15 -0
  65. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_has_exited/should_remove_the_container.yml +392 -0
  66. data/spec/vcr/Bigrig_DestroyAction/_perform/given_json_with_a_single_container/and_the_container_is_running/kills_and_removes_the_container.yml +418 -0
  67. data/spec/vcr/Bigrig_DockerAdapter/_build/builds_the_given_directory.yml +63 -0
  68. data/spec/vcr/Bigrig_DockerAdapter/_build/passes_build_input_to_a_block.yml +35 -0
  69. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_does_not_exist/is_false.yml +115 -0
  70. data/spec/vcr/Bigrig_DockerAdapter/_container_exists_/when_the_container_exists/is_true.yml +82 -0
  71. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_does_not_exist/raise_a_ImageNotFoundError.yml +172 -0
  72. data/spec/vcr/Bigrig_DockerAdapter/_image_id_by_tag/when_the_image_exists/returns_the_image_id.yml +148 -0
  73. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_does_not_exist/should_raise_an_error.yml +115 -0
  74. data/spec/vcr/Bigrig_DockerAdapter/_kill/given_the_container_is_running/should_kill_the_container.yml +200 -0
  75. data/spec/vcr/Bigrig_DockerAdapter/_logs/streams_logs_to_a_block.yml +163 -0
  76. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_a_block_to_capture_output/should_capture_output.yml +64 -0
  77. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_does_not_exist/raises_a_RepoNotFoundError.yml +30 -0
  78. data/spec/vcr/Bigrig_DockerAdapter/_pull/given_the_repo_exists/returns_the_image_id.yml +92 -0
  79. data/spec/vcr/Bigrig_DockerAdapter/_push/given_credentials/will_pass_login_and_password.yml +254 -0
  80. data/spec/vcr/Bigrig_DockerAdapter/_push/should_push_the_image.yml +482 -0
  81. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_does_not_exist/raises_a_ContainerNotFoundError.yml +227 -0
  82. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_exists/should_remove_the_container.yml +222 -0
  83. data/spec/vcr/Bigrig_DockerAdapter/_remove_container/when_the_container_is_running/raises_a_ContainerRunningError.yml +80 -0
  84. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_doesnt_exist/raises_an_error.yml +115 -0
  85. data/spec/vcr/Bigrig_DockerAdapter/_remove_image/when_the_image_exists/removes_the_image.yml +199 -0
  86. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name/starts_the_container_with_the_right_name.yml +204 -0
  87. 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 +204 -0
  88. data/spec/vcr/Bigrig_DockerAdapter/_run/given_an_image_id_that_exists/and_a_name_and_ports/starts_the_container_with_ports_exposed.yml +230 -0
  89. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_does_not_exist/returns_false.yml +115 -0
  90. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_not_running/returns_false.yml +82 -0
  91. data/spec/vcr/Bigrig_DockerAdapter/_running_/when_the_container_is_running/returns_true.yml +103 -0
  92. data/spec/vcr/Bigrig_DockerAdapter/_tag/should_tag_the_image.yml +290 -0
  93. data/spec/vcr/Bigrig_LogAction/_perform/follows_the_log.yml +163 -0
  94. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_a_path/builds_the_image_before_starting_it.yml +310 -0
  95. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_ip/should_pass_hosts_to_container.yml +430 -0
  96. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_hosts_by_name/should_lookup_ips_for_hosts_with_a_hostname.yml +430 -0
  97. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_links/should_pass_links_to_the_right_container.yml +805 -0
  98. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/launches_both_containers_in_parallel.yml +731 -0
  99. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_multiple_containers/spins_up_multiple_containers.yml +805 -0
  100. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/should_spin_up_a_single_container.yml +404 -0
  101. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_one_container/when_a_dead_container_exists/should_remove_existing_containers.yml +329 -0
  102. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/should_pass_volumes_from_to_the_right_container.yml +805 -0
  103. data/spec/vcr/Bigrig_RunAction/_perform/given_a_file_with_volumes_from/starts_the_dependant_container_last.yml +731 -0
  104. data/spec/vcr/Bigrig_RunAction/_perform/when_activating_profiles_that_do_not_exist/ignores_the_missing_profile.yml +409 -0
  105. data/spec/vcr/Bigrig_RunAction/_perform/with_a_file_with_active_profiles/uses_the_overridden_image.yml +432 -0
  106. data/spec/vcr/bigrig/destroy/spec/data/single_json/kills_the_container.yml +166 -0
  107. data/spec/vcr/bigrig/dev/spec/data/dev_json/activates_the_dev_profile.yml +37 -0
  108. data/spec/vcr/bigrig/dev/spec/data/dev_json/destroys_containers_on_exit.yml +227 -0
  109. data/spec/vcr/bigrig/dev/spec/data/dev_json/starts_the_containers.yml +107 -0
  110. data/spec/vcr/bigrig/logs/spec/data/log_json/tails_the_logs.yml +163 -0
  111. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/leaves_existing_env_values_alone.yml +110 -0
  112. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_env.yml +110 -0
  113. data/spec/vcr/bigrig/run/spec/data/profiles_json_-p_qa/overrides_the_tag.yml +103 -0
  114. data/spec/vcr/bigrig/run/spec/data/single_json/sends_the_name_of_the_container_to_stdout.yml +75 -0
  115. data/spec/vcr/bigrig/run/spec/data/single_json/starts_the_container.yml +101 -0
  116. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/-c/cleans_the_image_when_its_done.yml +212 -0
  117. data/spec/vcr/bigrig/ship/spec/data/ship_json/with_a_version/builds_and_pushes_the_image.yml +128 -0
  118. data/spec/vcr/bigrig_bin_bigrig_destroy_spec/data/single_json_kills_the_container.yml +179 -0
  119. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_activates_the_dev_profile.yml +1068 -0
  120. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_destroys_containers_on_exit.yml +1070 -0
  121. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_starts_the_containers.yml +1068 -0
  122. data/spec/vcr/bigrig_bin_bigrig_dev_spec/data/dev_json_tails_the_logs.yml +1075 -0
  123. data/spec/vcr/bigrig_bin_bigrig_logs_spec/data/log_json_tails_the_logs.yml +69 -0
  124. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_leaves_existing_env_values_alone.yml +306 -0
  125. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_env.yml +306 -0
  126. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/profiles_json_-p_qa_overrides_the_tag.yml +306 -0
  127. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_sends_the_name_of_the_container_to_stdout.yml +306 -0
  128. data/spec/vcr/bigrig_bin_bigrig_run_spec/data/single_json_starts_the_container.yml +306 -0
  129. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_-c_cleans_the_image_when_its_done.yml +335 -0
  130. data/spec/vcr/bigrig_bin_bigrig_ship_spec/data/ship_json_with_a_version_builds_and_pushes_the_image.yml +285 -0
  131. data/test/dev/shipper.json +24 -0
  132. data/test/logs/bigrig.json +6 -0
  133. data/test/logs/container1/Dockerfile +4 -0
  134. data/test/logs/container1/run.sh +7 -0
  135. data/test/logs/container2/Dockerfile +4 -0
  136. data/test/logs/container2/run.sh +7 -0
  137. data/test/ship/bigrig-1.2.3.json +1 -0
  138. data/test/ship/bigrig.json +5 -0
  139. data/test/ship/registry.json +11 -0
  140. data/test/ship/ship/Dockerfile +4 -0
  141. data/test/ship/ship/run.sh +6 -0
  142. data/test/volumes_from/exports_volumes/Dockerfile +8 -0
  143. data/test/volumes_from/exports_volumes/index.html +8 -0
  144. data/test/volumes_from/exports_volumes/run.sh +7 -0
  145. data/test/volumes_from/shipper.json +14 -0
  146. metadata +278 -8
@@ -0,0 +1,254 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: "<DOCKER_HOST>/v1.16/images/create?fromImage=registry%3Alatest"
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Swipely/Docker-API 1.20.0
12
+ Content-Type:
13
+ - text/plain
14
+ response:
15
+ status:
16
+ code: 200
17
+ message:
18
+ headers:
19
+ Content-Type:
20
+ - application/json
21
+ Date:
22
+ - Thu, 12 Mar 2015 21:37:58 GMT
23
+ body:
24
+ encoding: UTF-8
25
+ string: "{\"status\":\"Already exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
26
+ exists\",\"progressDetail\":{},\"id\":\"f0dde87450ec\"}{\"status\":\"Already
27
+ exists\",\"progressDetail\":{},\"id\":\"76b658ecb564\"}{\"status\":\"Already
28
+ exists\",\"progressDetail\":{},\"id\":\"4faa69f72743\"}{\"status\":\"Already
29
+ exists\",\"progressDetail\":{},\"id\":\"2103b00b3fdf\"}{\"status\":\"Already
30
+ exists\",\"progressDetail\":{},\"id\":\"32943d3e6f56\"}{\"status\":\"Already
31
+ exists\",\"progressDetail\":{},\"id\":\"5cc05b767e63\"}{\"status\":\"Already
32
+ exists\",\"progressDetail\":{},\"id\":\"6d322257f61a\"}{\"status\":\"Already
33
+ exists\",\"progressDetail\":{},\"id\":\"2b5bdbaba7b4\"}{\"status\":\"Already
34
+ exists\",\"progressDetail\":{},\"id\":\"4db501ba5f65\"}{\"status\":\"Already
35
+ exists\",\"progressDetail\":{},\"id\":\"94a7590f0c68\"}{\"status\":\"Already
36
+ exists\",\"progressDetail\":{},\"id\":\"636f9c8d55c8\"}{\"status\":\"Already
37
+ exists\",\"progressDetail\":{},\"id\":\"72d05766572c\"}{\"status\":\"Already
38
+ exists\",\"progressDetail\":{},\"id\":\"6b0583376f62\"}{\"status\":\"Already
39
+ exists\",\"progressDetail\":{},\"id\":\"fc251f2434a1\"}{\"status\":\"The image
40
+ you are pulling has been verified. Important: image verification is a tech
41
+ preview feature and should not be relied on to provide security.\",\"id\":\"registry:latest\"}\r\n{\"status\":\"Status:
42
+ Image is up to date for registry:latest\"}\r\n"
43
+ http_version:
44
+ recorded_at: Thu, 12 Mar 2015 21:38:01 GMT
45
+ - request:
46
+ method: post
47
+ uri: "<DOCKER_HOST>/v1.16/containers/create?name=registry"
48
+ body:
49
+ encoding: UTF-8
50
+ string: '{"Image":"registry","Env":["GUNICORN_OPTS=[--preload]"],"ExposedPorts":{"5000/tcp":{}},"HostConfig":{"PortBindings":{"5000/tcp":[{"HostPort":"5000"}]}}}'
51
+ headers:
52
+ User-Agent:
53
+ - Swipely/Docker-API 1.20.0
54
+ Content-Type:
55
+ - application/json
56
+ response:
57
+ status:
58
+ code: 201
59
+ message:
60
+ headers:
61
+ Content-Type:
62
+ - application/json
63
+ Date:
64
+ - Thu, 12 Mar 2015 21:37:58 GMT
65
+ Content-Length:
66
+ - '90'
67
+ body:
68
+ encoding: UTF-8
69
+ string: |
70
+ {"Id":"58125876da8d2be8669a6b4a5baaa2baa08d5627d2a323cff1ee0d132b2d96bd","Warnings":null}
71
+ http_version:
72
+ recorded_at: Thu, 12 Mar 2015 21:38:01 GMT
73
+ - request:
74
+ method: post
75
+ uri: "<DOCKER_HOST>/v1.16/containers/58125876da8d2be8669a6b4a5baaa2baa08d5627d2a323cff1ee0d132b2d96bd/start"
76
+ body:
77
+ encoding: UTF-8
78
+ string: "{}"
79
+ headers:
80
+ User-Agent:
81
+ - Swipely/Docker-API 1.20.0
82
+ Content-Type:
83
+ - application/json
84
+ response:
85
+ status:
86
+ code: 204
87
+ message:
88
+ headers:
89
+ Date:
90
+ - Thu, 12 Mar 2015 21:37:59 GMT
91
+ body:
92
+ encoding: UTF-8
93
+ string: ''
94
+ http_version:
95
+ recorded_at: Thu, 12 Mar 2015 21:38:01 GMT
96
+ - request:
97
+ method: post
98
+ uri: "<DOCKER_HOST>/v1.16/images/create?fromSrc=-"
99
+ body:
100
+ encoding: US-ASCII
101
+ string: ''
102
+ headers:
103
+ User-Agent:
104
+ - Swipely/Docker-API 1.20.0
105
+ Content-Type:
106
+ - application/tar
107
+ Transfer-Encoding:
108
+ - chunked
109
+ response:
110
+ status:
111
+ code: 200
112
+ message:
113
+ headers:
114
+ Content-Type:
115
+ - application/json
116
+ Date:
117
+ - Thu, 12 Mar 2015 21:37:59 GMT
118
+ body:
119
+ encoding: UTF-8
120
+ string: "{\"status\":\"69d2261533aaa1cb1e422e82059fedefd481f8ba0a70130f32bb737a2da1f809\"}\r\n"
121
+ http_version:
122
+ recorded_at: Thu, 12 Mar 2015 21:38:01 GMT
123
+ - request:
124
+ method: post
125
+ uri: "<DOCKER_HOST>/v1.16/images/69d2261533aaa1cb1e422e82059fedefd481f8ba0a70130f32bb737a2da1f809/tag?repo=192.168.59.103%3A5000%2Ftest%2Fpush-me&tag=1.2.3"
126
+ body:
127
+ encoding: US-ASCII
128
+ string: ''
129
+ headers:
130
+ User-Agent:
131
+ - Swipely/Docker-API 1.20.0
132
+ Content-Type:
133
+ - text/plain
134
+ response:
135
+ status:
136
+ code: 201
137
+ message:
138
+ headers:
139
+ Date:
140
+ - Thu, 12 Mar 2015 21:37:59 GMT
141
+ Content-Length:
142
+ - '0'
143
+ Content-Type:
144
+ - text/plain; charset=utf-8
145
+ body:
146
+ encoding: UTF-8
147
+ string: ''
148
+ http_version:
149
+ recorded_at: Thu, 12 Mar 2015 21:38:01 GMT
150
+ - request:
151
+ method: get
152
+ uri: "<DOCKER_HOST>/v1.16/images/192.168.59.103:5000/test/push-me:1.2.3/json"
153
+ body:
154
+ encoding: US-ASCII
155
+ string: ''
156
+ headers:
157
+ User-Agent:
158
+ - Swipely/Docker-API 1.20.0
159
+ Content-Type:
160
+ - text/plain
161
+ response:
162
+ status:
163
+ code: 200
164
+ message:
165
+ headers:
166
+ Content-Type:
167
+ - application/json
168
+ Date:
169
+ - Thu, 12 Mar 2015 21:38:00 GMT
170
+ Content-Length:
171
+ - '679'
172
+ body:
173
+ encoding: UTF-8
174
+ string: |
175
+ {"Architecture":"amd64","Author":"","Comment":"Imported from -","Config":null,"Container":"","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":null,"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":null,"ExposedPorts":null,"Hostname":"","Image":"","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":null,"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-03-12T21:37:59.324228469Z","DockerVersion":"1.5.0","Id":"69d2261533aaa1cb1e422e82059fedefd481f8ba0a70130f32bb737a2da1f809","Os":"linux","Parent":"","Size":0,"VirtualSize":0}
176
+ http_version:
177
+ recorded_at: Thu, 12 Mar 2015 21:38:02 GMT
178
+ - request:
179
+ method: post
180
+ uri: "<DOCKER_HOST>/v1.16/containers/58125876da8d2be8669a6b4a5baaa2baa08d5627d2a323cff1ee0d132b2d96bd/kill"
181
+ body:
182
+ encoding: US-ASCII
183
+ string: ''
184
+ headers:
185
+ User-Agent:
186
+ - Swipely/Docker-API 1.20.0
187
+ Content-Type:
188
+ - text/plain
189
+ response:
190
+ status:
191
+ code: 204
192
+ message:
193
+ headers:
194
+ Date:
195
+ - Thu, 12 Mar 2015 21:38:00 GMT
196
+ body:
197
+ encoding: UTF-8
198
+ string: ''
199
+ http_version:
200
+ recorded_at: Thu, 12 Mar 2015 21:38:02 GMT
201
+ - request:
202
+ method: delete
203
+ uri: "<DOCKER_HOST>/v1.16/containers/58125876da8d2be8669a6b4a5baaa2baa08d5627d2a323cff1ee0d132b2d96bd"
204
+ body:
205
+ encoding: US-ASCII
206
+ string: ''
207
+ headers:
208
+ User-Agent:
209
+ - Swipely/Docker-API 1.20.0
210
+ Content-Type:
211
+ - text/plain
212
+ response:
213
+ status:
214
+ code: 204
215
+ message:
216
+ headers:
217
+ Date:
218
+ - Thu, 12 Mar 2015 21:38:00 GMT
219
+ body:
220
+ encoding: UTF-8
221
+ string: ''
222
+ http_version:
223
+ recorded_at: Thu, 12 Mar 2015 21:38:03 GMT
224
+ - request:
225
+ method: delete
226
+ uri: "<DOCKER_HOST>/v1.16/images/69d2261533aaa1cb1e422e82059fedefd481f8ba0a70130f32bb737a2da1f809?force=true"
227
+ body:
228
+ encoding: US-ASCII
229
+ string: ''
230
+ headers:
231
+ User-Agent:
232
+ - Swipely/Docker-API 1.20.0
233
+ Content-Type:
234
+ - text/plain
235
+ response:
236
+ status:
237
+ code: 200
238
+ message:
239
+ headers:
240
+ Content-Type:
241
+ - application/json
242
+ Date:
243
+ - Thu, 12 Mar 2015 21:38:00 GMT
244
+ Content-Length:
245
+ - '136'
246
+ body:
247
+ encoding: UTF-8
248
+ string: |-
249
+ [{"Untagged":"192.168.59.103:5000/test/push-me:1.2.3"}
250
+ ,{"Deleted":"69d2261533aaa1cb1e422e82059fedefd481f8ba0a70130f32bb737a2da1f809"}
251
+ ]
252
+ http_version:
253
+ recorded_at: Thu, 12 Mar 2015 21:38:03 GMT
254
+ recorded_with: VCR 2.9.3