docker-api 1.30.0 → 1.30.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ccea9c7feff7598faa3a7454dc4288175b2cd85b
4
- data.tar.gz: de4ce8b295ee655a7f5a50e32f381f09a615df22
3
+ metadata.gz: 210dd4b08216025bc2584e22ae74642679ca3f3c
4
+ data.tar.gz: c6860ab766b1ca34d19bba5a70966ce695c471af
5
5
  SHA512:
6
- metadata.gz: be98218b4aad256b5941ce2f512911685a0a3bd150b8c93be429e8ae61a70d6b29056058578139e49f0b96215cdca2dc247264223c9696744d80fe4087d8c401
7
- data.tar.gz: 72c9c3bd8ddd07da6e0b2b3b393e6c35e3124ae975d37e26416bec14cea73eca2668e281c8d5a3d053c9503d31d98d55cf18f6099103c3401d3cdcfbb3ddbdb9
6
+ metadata.gz: ccc27921a9ae57766505c7893e06bbefed7757c685b3c597c24ab8a833a076195c3f04dc3a8f065b64dd1d2d5b05e27acaa6d3f17185faf41b236969c7346922
7
+ data.tar.gz: 11a113c975cfea7953615ec8a26454b8e8d3d2fe31e881115816356848842a8972c6dc0f615d9a9dec67040edb0ec47be21f85bbc80388f013e2ec985901889b
@@ -59,6 +59,7 @@ class Docker::Container
59
59
  stdin = opts.delete(:stdin)
60
60
  stdout = opts.delete(:stdout) || !detach
61
61
  stderr = opts.delete(:stderr) || !detach
62
+ wait = opts.delete(:wait)
62
63
 
63
64
  # Create Exec Instance
64
65
  instance = Docker::Exec.create(
@@ -77,7 +78,8 @@ class Docker::Container
77
78
  start_opts = {
78
79
  :tty => tty,
79
80
  :stdin => stdin,
80
- :detach => detach
81
+ :detach => detach,
82
+ :wait => wait
81
83
  }
82
84
 
83
85
  if detach
@@ -1,6 +1,6 @@
1
1
  module Docker
2
2
  # The version of the docker-api gem.
3
- VERSION = '1.30.0'
3
+ VERSION = '1.30.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.30.0
4
+ version: 1.30.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: 2016-08-04 00:00:00.000000000 Z
11
+ date: 2016-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: excon