docker-api 1.16.1 → 1.17.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.
- checksums.yaml +4 -4
- data/README.md +18 -0
- data/Rakefile +1 -1
- data/lib/docker/image.rb +66 -17
- data/lib/docker/version.rb +1 -1
- data/spec/docker/image_spec.rb +60 -0
- data/spec/vcr/Docker_Image/_push/when_the_image_was_retrived_by_get/when_no_tag_is_specified/looks_up_the_first_repo_tag.yml +916 -0
- data/spec/vcr/Docker_Image/_refresh_/with_an_explicit_connection/updates_using_the_provided_connection.yml +60 -0
- data/spec/vcr/Docker_Image/_save/calls_the_class_method.yml +64 -0
- data/spec/vcr/Docker_Image/_save/when_a_filename_is_specified/exports_tarball_of_image_to_specified_file.yml +188 -0
- data/spec/vcr/Docker_Image/_save/when_no_filename_is_specified/returns_raw_binary_data_as_string.yml +188 -0
- metadata +12 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: docker-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.17.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Swipely, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-12-
|
11
|
+
date: 2014-12-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: excon
|
@@ -279,13 +279,18 @@ files:
|
|
279
279
|
- spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml
|
280
280
|
- spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml
|
281
281
|
- spec/vcr/Docker_Image/_push/pushes_the_Image.yml
|
282
|
+
- spec/vcr/Docker_Image/_push/when_the_image_was_retrived_by_get/when_no_tag_is_specified/looks_up_the_first_repo_tag.yml
|
282
283
|
- spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml
|
283
284
|
- spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml
|
285
|
+
- spec/vcr/Docker_Image/_refresh_/with_an_explicit_connection/updates_using_the_provided_connection.yml
|
284
286
|
- spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml
|
285
287
|
- spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml
|
286
288
|
- spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml
|
287
289
|
- spec/vcr/Docker_Image/_run/when_the_argument_is_nil/command_configured_in_image/should_normally_show_result_if_image_has_Cmd_configured.yml
|
288
290
|
- spec/vcr/Docker_Image/_run/when_the_argument_is_nil/no_command_configured_in_image/should_raise_an_error_if_no_command_is_specified.yml
|
291
|
+
- spec/vcr/Docker_Image/_save/calls_the_class_method.yml
|
292
|
+
- spec/vcr/Docker_Image/_save/when_a_filename_is_specified/exports_tarball_of_image_to_specified_file.yml
|
293
|
+
- spec/vcr/Docker_Image/_save/when_no_filename_is_specified/returns_raw_binary_data_as_string.yml
|
289
294
|
- spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml
|
290
295
|
- spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml
|
291
296
|
homepage: https://github.com/swipely/docker-api
|
@@ -396,13 +401,18 @@ test_files:
|
|
396
401
|
- spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml
|
397
402
|
- spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml
|
398
403
|
- spec/vcr/Docker_Image/_push/pushes_the_Image.yml
|
404
|
+
- spec/vcr/Docker_Image/_push/when_the_image_was_retrived_by_get/when_no_tag_is_specified/looks_up_the_first_repo_tag.yml
|
399
405
|
- spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml
|
400
406
|
- spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml
|
407
|
+
- spec/vcr/Docker_Image/_refresh_/with_an_explicit_connection/updates_using_the_provided_connection.yml
|
401
408
|
- spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml
|
402
409
|
- spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml
|
403
410
|
- spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml
|
404
411
|
- spec/vcr/Docker_Image/_run/when_the_argument_is_nil/command_configured_in_image/should_normally_show_result_if_image_has_Cmd_configured.yml
|
405
412
|
- spec/vcr/Docker_Image/_run/when_the_argument_is_nil/no_command_configured_in_image/should_raise_an_error_if_no_command_is_specified.yml
|
413
|
+
- spec/vcr/Docker_Image/_save/calls_the_class_method.yml
|
414
|
+
- spec/vcr/Docker_Image/_save/when_a_filename_is_specified/exports_tarball_of_image_to_specified_file.yml
|
415
|
+
- spec/vcr/Docker_Image/_save/when_no_filename_is_specified/returns_raw_binary_data_as_string.yml
|
406
416
|
- spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml
|
407
417
|
- spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml
|
408
418
|
has_rdoc:
|