docker-api 1.22.0 → 1.22.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f0a375a8c53e4a143b9bf9388a5dccd6e961e6cd
4
- data.tar.gz: 9eb361fafb9cf48b6950a68b6054db0dded319f4
3
+ metadata.gz: 3741e7b8ad90ccdb8b121bd3fba475590f912883
4
+ data.tar.gz: c4757dec47c50c5707ed4a6b233fc76812cd1e6a
5
5
  SHA512:
6
- metadata.gz: e3b3ca949b145e5696ef46bcb5ef9c3fe1636259af8a528deb3d372b907b4846cf6651eacca8c3fa9abd8409d68e82abfb6ff6151561af8ad81872c4d01bdd09
7
- data.tar.gz: 07774657e5e160fe02ec60d987278820bb768b67567f23266c2bc41919ac9cf51dd89d39bef865787f02ee0978087cfeff1c3e9b99a1c9a3d269f0587da661d3
6
+ metadata.gz: b1bcf172852abe75d9b6567d2d645b8da514dd99311dd6e6e228942218ea269cf1577b661a6a7651295ab5ceee40acbe4ab00ea96a95b039fbd11604fd196ea7
7
+ data.tar.gz: 95f62fcf3fed065b8be232fad7513db5e4b64c1dba805db219428539973cd0b185e4f43c082b76ae39349c33d026489f145d1462e605389cc2eee96ed9a3f601
data/README.md CHANGED
@@ -94,6 +94,8 @@ Docker.options = {
94
94
  }
95
95
  ```
96
96
 
97
+ If you need to disable SSL verification, set the DOCKER_SSL_VERIFY variable to 'false'.
98
+
97
99
  ## Global calls
98
100
 
99
101
  All of the following examples require a connection to a Docker server. See the <a href="#starting-up">Starting up</a> section above for more information.
@@ -139,7 +139,7 @@ class Docker::Image
139
139
  query = {}
140
140
  query.compare_by_identity
141
141
  Array(names).each do |name|
142
- query['names'] = URI.encode(name)
142
+ query['names'.dup] = URI.encode(name)
143
143
  end
144
144
 
145
145
  if filename
@@ -1,6 +1,6 @@
1
1
  module Docker
2
2
  # The version of the docker-api gem.
3
- VERSION = '1.22.0'
3
+ VERSION = '1.22.1'
4
4
 
5
5
  # The version of the compatible Docker remote API.
6
6
  API_VERSION = '1.16'
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.22.0
4
+ version: 1.22.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Swipely, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-16 00:00:00.000000000 Z
11
+ date: 2015-07-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: excon