docker-api 1.5.4 → 1.6.0

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 (52) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +19 -10
  3. data/docker-api.gemspec +1 -1
  4. data/lib/docker.rb +14 -7
  5. data/lib/docker/connection.rb +6 -1
  6. data/lib/docker/image.rb +6 -5
  7. data/lib/docker/version.rb +1 -1
  8. data/spec/docker/connection_spec.rb +14 -6
  9. data/spec/docker/container_spec.rb +27 -8
  10. data/spec/docker/image_spec.rb +23 -5
  11. data/spec/docker_spec.rb +36 -28
  12. data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +16 -13
  13. data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +16 -13
  14. data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +16 -13
  15. data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +120 -211
  16. data/spec/vcr/Docker_Container/_attach/yields_each_chunk.yml +46 -38
  17. data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +65 -53
  18. data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +50 -41
  19. data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +62 -48
  20. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +194 -119
  21. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +127 -52
  22. data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +18 -15
  23. data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +62 -126
  24. data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +49 -66
  25. data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +33 -27
  26. data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +91 -129
  27. data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +116 -95
  28. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +50 -41
  29. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_returns_a_status_code_of_0/creates_a_new_container_to_run_the_specified_command.yml +135 -109
  30. data/spec/vcr/Docker_Container/_start/starts_the_container.yml +28 -57
  31. data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +107 -143
  32. data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +78 -39
  33. data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +50 -41
  34. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +35 -29
  35. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +50 -41
  36. data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +34 -26
  37. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/builds_an_image.yml +17 -17
  38. data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +20 -15
  39. data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id.yml +19 -14
  40. data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +34 -26
  41. data/spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml +134 -95
  42. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +29 -29
  43. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +5 -5
  44. data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +30 -30
  45. data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +34 -26
  46. data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +49 -38
  47. data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +64 -51
  48. data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +64 -51
  49. data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +20 -14
  50. data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +33 -25
  51. metadata +29 -54
  52. data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist_and_the_body_is_a_Hash/when_the_HTTP_request_returns_a_200/sets_the_id.yml +0 -30
@@ -2,83 +2,92 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://localhost:4243/v1.4/containers/create
5
+ uri: http://unix/v1.4/containers/create
6
6
  body:
7
7
  encoding: UTF-8
8
- string: '{"Cmd":["lol","not","a","real","command"],"Image":"base"}'
8
+ string: ! '{"Cmd":["lol","not","a","real","command"],"Image":"base"}'
9
9
  headers:
10
- Content-Type:
11
- - text/plain
12
10
  User-Agent:
13
- - Swipely/Docker-API 1.3.1
11
+ - Swipely/Docker-API 1.5.4
12
+ Content-Type:
13
+ - application/json
14
14
  response:
15
15
  status:
16
16
  code: 201
17
17
  message: ''
18
18
  headers:
19
- Content-Type:
20
- - text/plain; charset=utf-8
21
- Content-Length:
22
- - '21'
23
- Date:
24
- - Wed, 07 Aug 2013 16:51:30 GMT
19
+ !binary "Q29udGVudC1UeXBl":
20
+ - !binary |-
21
+ YXBwbGljYXRpb24vanNvbg==
22
+ !binary "Q29udGVudC1MZW5ndGg=":
23
+ - !binary |-
24
+ NjU=
25
+ !binary "RGF0ZQ==":
26
+ - !binary |-
27
+ TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOCBHTVQ=
25
28
  body:
26
- encoding: UTF-8
27
- string: '{"Id":"5dbc28c27062"}'
29
+ encoding: US-ASCII
30
+ string: ! '{"Id":"bdf4626c3eba","Warnings":["IPv4 forwarding is disabled."]}'
28
31
  http_version:
29
- recorded_at: Wed, 07 Aug 2013 16:51:30 GMT
32
+ recorded_at: Mon, 07 Oct 2013 00:47:38 GMT
30
33
  - request:
31
34
  method: post
32
- uri: http://localhost:4243/v1.4/containers/5dbc28c27062/start
35
+ uri: http://unix/v1.4/containers/bdf4626c3eba/start
33
36
  body:
34
- encoding: US-ASCII
35
- string: ''
37
+ encoding: UTF-8
38
+ string: ! '{}'
36
39
  headers:
37
- Content-Type:
38
- - text/plain
39
40
  User-Agent:
40
- - Swipely/Docker-API 1.3.1
41
+ - Swipely/Docker-API 1.5.4
42
+ Content-Type:
43
+ - application/json
41
44
  response:
42
45
  status:
43
46
  code: 204
44
47
  message: ''
45
48
  headers:
46
- Content-Type:
47
- - text/plain; charset=utf-8
48
- Content-Length:
49
- - '0'
50
- Date:
51
- - Wed, 07 Aug 2013 16:51:30 GMT
49
+ !binary "Q29udGVudC1UeXBl":
50
+ - !binary |-
51
+ dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
52
+ !binary "Q29udGVudC1MZW5ndGg=":
53
+ - !binary |-
54
+ MA==
55
+ !binary "RGF0ZQ==":
56
+ - !binary |-
57
+ TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOCBHTVQ=
52
58
  body:
53
- encoding: UTF-8
59
+ encoding: US-ASCII
54
60
  string: ''
55
61
  http_version:
56
- recorded_at: Wed, 07 Aug 2013 16:51:30 GMT
62
+ recorded_at: Mon, 07 Oct 2013 00:47:38 GMT
57
63
  - request:
58
64
  method: post
59
- uri: http://localhost:4243/v1.4/containers/5dbc28c27062/wait
65
+ uri: http://unix/v1.4/containers/bdf4626c3eba/wait
60
66
  body:
61
67
  encoding: US-ASCII
62
68
  string: ''
63
69
  headers:
70
+ User-Agent:
71
+ - Swipely/Docker-API 1.5.4
64
72
  Content-Type:
65
73
  - text/plain
66
- User-Agent:
67
- - Swipely/Docker-API 1.3.1
68
74
  response:
69
75
  status:
70
76
  code: 200
71
77
  message: ''
72
78
  headers:
73
- Content-Type:
74
- - application/json
75
- Content-Length:
76
- - '18'
77
- Date:
78
- - Wed, 07 Aug 2013 16:51:31 GMT
79
+ !binary "Q29udGVudC1UeXBl":
80
+ - !binary |-
81
+ YXBwbGljYXRpb24vanNvbg==
82
+ !binary "Q29udGVudC1MZW5ndGg=":
83
+ - !binary |-
84
+ MTg=
85
+ !binary "RGF0ZQ==":
86
+ - !binary |-
87
+ TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOSBHTVQ=
79
88
  body:
80
- encoding: UTF-8
81
- string: '{"StatusCode":127}'
89
+ encoding: US-ASCII
90
+ string: ! '{"StatusCode":127}'
82
91
  http_version:
83
- recorded_at: Wed, 07 Aug 2013 16:51:31 GMT
84
- recorded_with: VCR 2.4.0
92
+ recorded_at: Mon, 07 Oct 2013 00:47:39 GMT
93
+ recorded_with: VCR 2.6.0
@@ -2,219 +2,245 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://localhost:4243/v1.4/containers/create
5
+ uri: http://unix/v1.4/containers/create
6
6
  body:
7
7
  encoding: UTF-8
8
- string: '{"Cmd":["pwd"],"Image":"base"}'
8
+ string: ! '{"Cmd":["pwd"],"Image":"base"}'
9
9
  headers:
10
- Content-Type:
11
- - text/plain
12
10
  User-Agent:
13
- - Swipely/Docker-API 1.3.1
11
+ - Swipely/Docker-API 1.5.4
12
+ Content-Type:
13
+ - application/json
14
14
  response:
15
15
  status:
16
16
  code: 201
17
17
  message: ''
18
18
  headers:
19
- Content-Type:
20
- - text/plain; charset=utf-8
21
- Content-Length:
22
- - '21'
23
- Date:
24
- - Wed, 07 Aug 2013 16:51:31 GMT
19
+ !binary "Q29udGVudC1UeXBl":
20
+ - !binary |-
21
+ YXBwbGljYXRpb24vanNvbg==
22
+ !binary "Q29udGVudC1MZW5ndGg=":
23
+ - !binary |-
24
+ NjU=
25
+ !binary "RGF0ZQ==":
26
+ - !binary |-
27
+ TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOSBHTVQ=
25
28
  body:
26
- encoding: UTF-8
27
- string: '{"Id":"865949f36b3f"}'
29
+ encoding: US-ASCII
30
+ string: ! '{"Id":"0f51f2f337bc","Warnings":["IPv4 forwarding is disabled."]}'
28
31
  http_version:
29
- recorded_at: Wed, 07 Aug 2013 16:51:31 GMT
32
+ recorded_at: Mon, 07 Oct 2013 00:47:39 GMT
30
33
  - request:
31
34
  method: post
32
- uri: http://localhost:4243/v1.4/containers/865949f36b3f/start
35
+ uri: http://unix/v1.4/containers/0f51f2f337bc/start
33
36
  body:
34
- encoding: US-ASCII
35
- string: ''
37
+ encoding: UTF-8
38
+ string: ! '{}'
36
39
  headers:
37
- Content-Type:
38
- - text/plain
39
40
  User-Agent:
40
- - Swipely/Docker-API 1.3.1
41
+ - Swipely/Docker-API 1.5.4
42
+ Content-Type:
43
+ - application/json
41
44
  response:
42
45
  status:
43
46
  code: 204
44
47
  message: ''
45
48
  headers:
46
- Content-Type:
47
- - text/plain; charset=utf-8
48
- Content-Length:
49
- - '0'
50
- Date:
51
- - Wed, 07 Aug 2013 16:51:31 GMT
49
+ !binary "Q29udGVudC1UeXBl":
50
+ - !binary |-
51
+ dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
52
+ !binary "Q29udGVudC1MZW5ndGg=":
53
+ - !binary |-
54
+ MA==
55
+ !binary "RGF0ZQ==":
56
+ - !binary |-
57
+ TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOSBHTVQ=
52
58
  body:
53
- encoding: UTF-8
59
+ encoding: US-ASCII
54
60
  string: ''
55
61
  http_version:
56
- recorded_at: Wed, 07 Aug 2013 16:51:31 GMT
62
+ recorded_at: Mon, 07 Oct 2013 00:47:39 GMT
57
63
  - request:
58
64
  method: post
59
- uri: http://localhost:4243/v1.4/containers/865949f36b3f/wait
65
+ uri: http://unix/v1.4/containers/0f51f2f337bc/wait
60
66
  body:
61
67
  encoding: US-ASCII
62
68
  string: ''
63
69
  headers:
70
+ User-Agent:
71
+ - Swipely/Docker-API 1.5.4
64
72
  Content-Type:
65
73
  - text/plain
66
- User-Agent:
67
- - Swipely/Docker-API 1.3.1
68
74
  response:
69
75
  status:
70
76
  code: 200
71
77
  message: ''
72
78
  headers:
73
- Content-Type:
74
- - application/json
75
- Content-Length:
76
- - '16'
77
- Date:
78
- - Wed, 07 Aug 2013 16:51:31 GMT
79
+ !binary "Q29udGVudC1UeXBl":
80
+ - !binary |-
81
+ YXBwbGljYXRpb24vanNvbg==
82
+ !binary "Q29udGVudC1MZW5ndGg=":
83
+ - !binary |-
84
+ MTY=
85
+ !binary "RGF0ZQ==":
86
+ - !binary |-
87
+ TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOSBHTVQ=
79
88
  body:
80
- encoding: UTF-8
81
- string: '{"StatusCode":0}'
89
+ encoding: US-ASCII
90
+ string: ! '{"StatusCode":0}'
82
91
  http_version:
83
- recorded_at: Wed, 07 Aug 2013 16:51:31 GMT
92
+ recorded_at: Mon, 07 Oct 2013 00:47:39 GMT
84
93
  - request:
85
94
  method: post
86
- uri: http://localhost:4243/v1.4/commit?container=865949f3
95
+ uri: http://unix/v1.4/commit?container=0f51f2f3
87
96
  body:
88
97
  encoding: US-ASCII
89
98
  string: ''
90
99
  headers:
100
+ User-Agent:
101
+ - Swipely/Docker-API 1.5.4
91
102
  Content-Type:
92
103
  - text/plain
93
- User-Agent:
94
- - Swipely/Docker-API 1.3.1
95
104
  response:
96
105
  status:
97
106
  code: 201
98
107
  message: ''
99
108
  headers:
100
- Content-Type:
101
- - text/plain; charset=utf-8
102
- Content-Length:
103
- - '21'
104
- Date:
105
- - Wed, 07 Aug 2013 16:51:31 GMT
109
+ !binary "Q29udGVudC1UeXBl":
110
+ - !binary |-
111
+ YXBwbGljYXRpb24vanNvbg==
112
+ !binary "Q29udGVudC1MZW5ndGg=":
113
+ - !binary |-
114
+ MjE=
115
+ !binary "RGF0ZQ==":
116
+ - !binary |-
117
+ TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOSBHTVQ=
106
118
  body:
107
- encoding: UTF-8
108
- string: '{"Id":"fce068f57d19"}'
119
+ encoding: US-ASCII
120
+ string: ! '{"Id":"4f950dcbd5a5"}'
109
121
  http_version:
110
- recorded_at: Wed, 07 Aug 2013 16:51:31 GMT
122
+ recorded_at: Mon, 07 Oct 2013 00:47:39 GMT
111
123
  - request:
112
124
  method: post
113
- uri: http://localhost:4243/v1.4/containers/create
125
+ uri: http://unix/v1.4/containers/create
114
126
  body:
115
127
  encoding: UTF-8
116
- string: '{"Image":"fce068f57d19","Cmd":["ls"]}'
128
+ string: ! '{"Image":"4f950dcbd5a5","Cmd":["ls"]}'
117
129
  headers:
118
- Content-Type:
119
- - text/plain
120
130
  User-Agent:
121
- - Swipely/Docker-API 1.3.1
131
+ - Swipely/Docker-API 1.5.4
132
+ Content-Type:
133
+ - application/json
122
134
  response:
123
135
  status:
124
136
  code: 201
125
137
  message: ''
126
138
  headers:
127
- Content-Type:
128
- - text/plain; charset=utf-8
129
- Content-Length:
130
- - '21'
131
- Date:
132
- - Wed, 07 Aug 2013 16:51:31 GMT
139
+ !binary "Q29udGVudC1UeXBl":
140
+ - !binary |-
141
+ YXBwbGljYXRpb24vanNvbg==
142
+ !binary "Q29udGVudC1MZW5ndGg=":
143
+ - !binary |-
144
+ NjU=
145
+ !binary "RGF0ZQ==":
146
+ - !binary |-
147
+ TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOSBHTVQ=
133
148
  body:
134
- encoding: UTF-8
135
- string: '{"Id":"4bd161705f24"}'
149
+ encoding: US-ASCII
150
+ string: ! '{"Id":"9e72eb4c5f37","Warnings":["IPv4 forwarding is disabled."]}'
136
151
  http_version:
137
- recorded_at: Wed, 07 Aug 2013 16:51:31 GMT
152
+ recorded_at: Mon, 07 Oct 2013 00:47:39 GMT
138
153
  - request:
139
154
  method: post
140
- uri: http://localhost:4243/v1.4/containers/4bd161705f24/start
155
+ uri: http://unix/v1.4/containers/9e72eb4c5f37/start
141
156
  body:
142
- encoding: US-ASCII
143
- string: ''
157
+ encoding: UTF-8
158
+ string: ! '{}'
144
159
  headers:
145
- Content-Type:
146
- - text/plain
147
160
  User-Agent:
148
- - Swipely/Docker-API 1.3.1
161
+ - Swipely/Docker-API 1.5.4
162
+ Content-Type:
163
+ - application/json
149
164
  response:
150
165
  status:
151
166
  code: 204
152
167
  message: ''
153
168
  headers:
154
- Content-Type:
155
- - text/plain; charset=utf-8
156
- Content-Length:
157
- - '0'
158
- Date:
159
- - Wed, 07 Aug 2013 16:51:31 GMT
169
+ !binary "Q29udGVudC1UeXBl":
170
+ - !binary |-
171
+ dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
172
+ !binary "Q29udGVudC1MZW5ndGg=":
173
+ - !binary |-
174
+ MA==
175
+ !binary "RGF0ZQ==":
176
+ - !binary |-
177
+ TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOSBHTVQ=
160
178
  body:
161
- encoding: UTF-8
179
+ encoding: US-ASCII
162
180
  string: ''
163
181
  http_version:
164
- recorded_at: Wed, 07 Aug 2013 16:51:31 GMT
182
+ recorded_at: Mon, 07 Oct 2013 00:47:39 GMT
165
183
  - request:
166
184
  method: post
167
- uri: http://localhost:4243/v1.4/containers/4bd161705f24/start
185
+ uri: http://unix/v1.4/containers/9e72eb4c5f37/start
168
186
  body:
169
- encoding: US-ASCII
170
- string: ''
187
+ encoding: UTF-8
188
+ string: ! '{}'
171
189
  headers:
172
- Content-Type:
173
- - text/plain
174
190
  User-Agent:
175
- - Swipely/Docker-API 1.3.1
191
+ - Swipely/Docker-API 1.5.4
192
+ Content-Type:
193
+ - application/json
176
194
  response:
177
195
  status:
178
196
  code: 500
179
197
  message: ''
180
198
  headers:
181
- Content-Type:
182
- - text/plain; charset=utf-8
183
- Content-Length:
184
- - '138'
185
- Date:
186
- - Wed, 07 Aug 2013 16:51:31 GMT
199
+ !binary "Q29udGVudC1UeXBl":
200
+ - !binary |-
201
+ dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
202
+ !binary "Q29udGVudC1MZW5ndGg=":
203
+ - !binary |-
204
+ MTM4
205
+ !binary "RGF0ZQ==":
206
+ - !binary |-
207
+ TW9uLCAwNyBPY3QgMjAxMyAwMDo0NzozOSBHTVQ=
187
208
  body:
188
- encoding: UTF-8
189
- string: |
190
- Error starting container 4bd161705f24: The container 4bd161705f24a2dff9d416d8b7b1514f0001160876a0b0f1ef0e684511ac89de is already running.
209
+ encoding: US-ASCII
210
+ string: ! 'Error starting container 9e72eb4c5f37: The container 9e72eb4c5f37e773dae080f57d3f155ce2037a0db3b5ad82710e5f8163dfa793
211
+ is already running.
212
+
213
+ '
191
214
  http_version:
192
- recorded_at: Wed, 07 Aug 2013 16:51:31 GMT
215
+ recorded_at: Mon, 07 Oct 2013 00:47:39 GMT
193
216
  - request:
194
217
  method: post
195
- uri: http://localhost:4243/v1.4/containers/4bd161705f24/wait
218
+ uri: http://unix/v1.4/containers/9e72eb4c5f37/wait
196
219
  body:
197
220
  encoding: US-ASCII
198
221
  string: ''
199
222
  headers:
223
+ User-Agent:
224
+ - Swipely/Docker-API 1.5.4
200
225
  Content-Type:
201
226
  - text/plain
202
- User-Agent:
203
- - Swipely/Docker-API 1.3.1
204
227
  response:
205
228
  status:
206
229
  code: 200
207
230
  message: ''
208
231
  headers:
209
- Content-Type:
210
- - application/json
211
- Content-Length:
212
- - '16'
213
- Date:
214
- - Wed, 07 Aug 2013 16:51:31 GMT
232
+ !binary "Q29udGVudC1UeXBl":
233
+ - !binary |-
234
+ YXBwbGljYXRpb24vanNvbg==
235
+ !binary "Q29udGVudC1MZW5ndGg=":
236
+ - !binary |-
237
+ MTY=
238
+ !binary "RGF0ZQ==":
239
+ - !binary |-
240
+ TW9uLCAwNyBPY3QgMjAxMyAwMDo0Nzo0MCBHTVQ=
215
241
  body:
216
- encoding: UTF-8
217
- string: '{"StatusCode":0}'
242
+ encoding: US-ASCII
243
+ string: ! '{"StatusCode":0}'
218
244
  http_version:
219
- recorded_at: Wed, 07 Aug 2013 16:51:31 GMT
220
- recorded_with: VCR 2.4.0
245
+ recorded_at: Mon, 07 Oct 2013 00:47:40 GMT
246
+ recorded_with: VCR 2.6.0