cumuli 0.2.0 → 0.2.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 +4 -4
- data/lib/cumuli/app/app.rb +1 -2
- data/lib/cumuli/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2bfa663cb4c3c5fcc6e5261054285825cc07d9cd
|
|
4
|
+
data.tar.gz: 5b59ab58a2e88280208833e5f88f8b1a11572e69
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 527d7f0339e41ad676c64a24787ae823ead0b1b9560b01a4707f2c7d3d1f641e8ee442dfb4a81968dff894a5bb089caf5cd5985e4a990ea7ed3c946a7c81de12
|
|
7
|
+
data.tar.gz: 0484e05b60c25a9be15951c7838c2e6d602a85b8a4aa7bc224c7ca1ca79f2a8beb0887ce274b670a0ebd2b0ea7c2a7e3b785a6e35acf88a9a77c56b33929132d
|
data/lib/cumuli/app/app.rb
CHANGED
|
@@ -52,7 +52,7 @@ module Cumuli
|
|
|
52
52
|
end
|
|
53
53
|
|
|
54
54
|
def app_ports
|
|
55
|
-
|
|
55
|
+
apps.map.values.compact
|
|
56
56
|
end
|
|
57
57
|
|
|
58
58
|
def wait_for_apps
|
|
@@ -65,7 +65,6 @@ module Cumuli
|
|
|
65
65
|
|
|
66
66
|
def wait_for_app(port)
|
|
67
67
|
logger.print "waiting for apps on port: #{port}"
|
|
68
|
-
|
|
69
68
|
timeout = wait_time || DEFAULT_WAIT_TIME
|
|
70
69
|
Waiter.new("Application on port #{port} unavailable after #{timeout} seconds")
|
|
71
70
|
.wait_until(timeout) { open_socket(port) }
|
data/lib/cumuli/version.rb
CHANGED