[DRE-commits] [ruby-docker-api] branch master updated (5681b85 -> bf29be1)

Miguel Landaeta nomadium at moszumanska.debian.org
Sat Jul 26 01:28:29 UTC 2014


This is an automated email from the git hooks/post-receive script.

nomadium pushed a change to branch master
in repository ruby-docker-api.

      from  5681b85   Upload to unstable
      adds  000235b   Imported Upstream version 1.13.2
       new  02456e6   Merge tag 'upstream/1.13.2'
       new  bf29be1   WIP

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .cane                                              |   1 +
 .travis.yml                                        |   1 +
 README.md                                          |  37 +-
 checksums.yaml.gz                                  | Bin 268 -> 0 bytes
 debian/changelog                                   |   9 +
 debian/compat                                      |   2 +-
 debian/control                                     |   2 +-
 docker-api.gemspec                                 |   5 +-
 lib/docker.rb                                      |  16 +-
 lib/docker/connection.rb                           |   2 +-
 lib/docker/container.rb                            | 113 ++-
 lib/docker/image.rb                                |  58 +-
 lib/docker/util.rb                                 |  27 +-
 lib/docker/version.rb                              |   4 +-
 lib/excon/middlewares/hijack.rb                    |  38 +
 metadata.yml                                       | 114 ++-
 spec/docker/connection_spec.rb                     |  16 +-
 spec/docker/container_spec.rb                      | 173 +++-
 spec/docker/event_spec.rb                          |   8 +-
 spec/docker/image_spec.rb                          |  88 +-
 spec/docker/util_spec.rb                           |  75 +-
 spec/docker_spec.rb                                |  39 +-
 spec/spec_helper.rb                                |   4 +-
 .../logs_in_and_sets_the_creds.yml                 |  12 +-
 .../Docker/_info/returns_the_info_as_a_Hash.yml    |  14 +-
 .../when_nothing_is_raised/validate_version_/.yml  |  14 +-
 .../_version/returns_the_version_as_a_Hash.yml     |  14 +-
 ...izes_each_Container_into_a_Docker_Container.yml | 194 +++--
 .../with_normal_sized_chunks/yields_each_chunk.yml |  34 +-
 .../with_very_small_chunks/yields_each_chunk.yml   |  34 +-
 .../_changes/returns_the_changes_as_an_array.yml   |  50 +-
 ...es_a_new_Image_from_the_Container_s_changes.yml |  38 +-
 .../saves_the_command.yml                          |  28 +-
 .../yields_each_chunk_of_the_tarred_directory.yml  |  58 +-
 .../yields_each_chunk_of_the_tarred_file.yml       |  56 +-
 .../should_have_name_set_to_bob.yml                |  27 +-
 .../sets_the_id.yml                                |  14 +-
 .../_delete/deletes_the_container.yml              |  38 +-
 .../Docker_Container/_export/yields_each_chunk.yml |  46 +-
 ...lizes_the_Container_into_a_Docker_Container.yml |  27 +-
 .../_json/returns_the_description_as_a_Hash.yml    |  27 +-
 .../Docker_Container/_kill/kills_the_container.yml | 101 ++-
 .../with_a_kill_signal/kills_the_container.yml     | 265 ++++++
 .../returns_the_error_message.yml                  |  65 ++
 .../when_selecting_stdout/returns_blank_logs.yml}  |  32 +-
 .../_pause/pauses_the_container.yml                | 121 +++
 .../_restart/restarts_the_container.yml            |  96 +--
 .../raises_an_error.yml                            |  36 +-
 ..._new_container_to_run_the_specified_command.yml |  99 +--
 .../_start/starts_the_container.yml                |  50 +-
 .../Docker_Container/_stop/stops_the_container.yml | 118 +--
 .../_top/returns_the_top_commands_as_an_Array.yml  |  57 +-
 .../_unpause/unpauses_the_container.yml            | 150 ++++
 .../_wait/waits_for_the_command_to_finish.yml      |  36 +-
 .../raises_a_ServerError.yml                       |  28 +-
 ...ets_the_read_timeout_to_that_amount_of_time.yml |  36 +-
 ...materializes_each_Image_into_a_Docker_Image.yml |  45 +-
 .../calls_the_block_and_passes_build_output.yml    |  12 +-
 .../builds_an_image_and_tags_it.yml                |  55 +-
 .../without_query_parameters/builds_an_image.yml   |  12 +-
 .../throws_a_UnexpectedResponseError.yml           |  12 +-
 .../calls_the_block_and_passes_build_output.yml    |  18 +-
 .../sends_Docker_creds.yml}                        |  18 +-
 .../sends_X-Registry-Config_header.yml             |  39 +
 .../with_no_query_parameters/builds_the_image.yml  |  49 +-
 .../builds_the_image_and_tags_it.yml               |  80 +-
 .../sets_the_id_and_sends_Docker_creds.yml         | 738 ++---------------
 .../returns_the_new_image.yml                      |  15 +-
 .../_history/returns_the_history_of_the_Image.yml  |  22 +-
 .../when_the_URI_is_invalid/raises_an_error.yml    |  50 +-
 .../when_the_URI_is_valid/returns_an_Image.yml     |  24 +-
 .../when_the_file_does_exist/creates_the_Image.yml |  12 +-
 .../inserts_the_url_s_file_into_a_new_Image.yml    | 200 -----
 .../inserts_the_directory.yml                      | 911 +--------------------
 .../creates_a_new_image.yml                        |  76 +-
 .../leave_no_intermediate_containers.yml           |  80 +-
 .../creates_a_new_Image_that_has_that_file.yml     |  61 +-
 .../raises_an_error.yml                            |  12 +-
 .../creates_a_new_Image_that_has_each_file.yml     |  68 +-
 ...ns_additional_information_about_image_image.yml |  27 +-
 spec/vcr/Docker_Image/_push/pushes_the_Image.yml   | 273 +-----
 .../when_there_are_no_credentials/still_pushes.yml | 104 ++-
 .../_refresh_/updates_the_info_hash.yml            | 244 +-----
 .../vcr/Docker_Image/_remove/removes_the_Image.yml |  70 +-
 ...tring_by_spaces_and_creates_a_new_Container.yml |  42 +-
 .../creates_a_new_Container.yml                    |  42 +-
 ...d_raise_an_error_if_no_command_is_specified.yml |  24 +-
 ...materializes_each_Image_into_a_Docker_Image.yml | 181 ++--
 .../_tag/tags_the_image_with_the_repo_name.yml     |  18 +-
 89 files changed, 2796 insertions(+), 3685 deletions(-)
 delete mode 100644 checksums.yaml.gz
 create mode 100644 lib/excon/middlewares/hijack.rb
 create mode 100644 spec/vcr/Docker_Container/_kill/with_a_kill_signal/kills_the_container.yml
 create mode 100644 spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/returns_the_error_message.yml
 copy spec/vcr/Docker_Container/{_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml => _logs/when_selecting_stdout/returns_blank_logs.yml} (51%)
 create mode 100644 spec/vcr/Docker_Container/_pause/pauses_the_container.yml
 create mode 100644 spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml
 copy spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/{with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml => with_credentials_passed/sends_Docker_creds.yml} (54%)
 create mode 100644 spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_X-Registry-Config_header.yml
 delete mode 100644 spec/vcr/Docker_Image/_insert/inserts_the_url_s_file_into_a_new_Image.yml

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-docker-api.git



More information about the Pkg-ruby-extras-commits mailing list