cucumber-pro 0.0.9 → 0.0.10
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/TODO.md +1 -1
- data/lib/cucumber/pro/version +1 -1
- data/lib/cucumber/pro/web_socket/session.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7fd11a55ff94f550c031e2a8c53a3cede86518b4
|
|
4
|
+
data.tar.gz: 6852419497d7aa8d3dcf3159e4f292163ddb46c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7da04fa73fdfd8d4ffd2ceaa69f7ea3a47fc4a03e2318ef96fe1d4b625c250cc69d76cb0bf16863155ca08d8426d50cc6de021cd10f27f046275ff14f29051e4
|
|
7
|
+
data.tar.gz: eee420cd029b54979e769fb49b815b2fc67f4ca9277b427d76dc0aa7f5eb9e756eab0cb5b5c68db35444bfbece3a4eefda1fbfe6f2b86f5f87e1d96de15d2dad
|
data/TODO.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
- Unit tests for Messaging
|
|
2
|
-
- Handle cases where some messages sent are not ack'd
|
|
2
|
+
- Handle cases where some messages sent are not ack'd with a timeout
|
|
3
3
|
- Handle cases where some messages sent come back with an error
|
|
4
4
|
- e.g. upgrade your client error
|
|
5
5
|
- Allow configuration of git remote
|
data/lib/cucumber/pro/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.10
|
|
@@ -11,7 +11,7 @@ module Cucumber
|
|
|
11
11
|
def initialize(url, logger)
|
|
12
12
|
@url, @logger = url, logger
|
|
13
13
|
create_socket = -> worker {
|
|
14
|
-
ws = Faye::WebSocket::Client.new(@url)
|
|
14
|
+
ws = Faye::WebSocket::Client.new(@url, ping: 15)
|
|
15
15
|
ws.on :open, &worker.method(:on_open)
|
|
16
16
|
ws.on :error, &worker.method(:on_error)
|
|
17
17
|
ws.on :message, &worker.method(:on_message)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cucumber-pro
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Wynne
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-05-
|
|
11
|
+
date: 2014-05-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faye-websocket
|
|
@@ -190,7 +190,7 @@ rubyforge_project:
|
|
|
190
190
|
rubygems_version: 2.0.14
|
|
191
191
|
signing_key:
|
|
192
192
|
specification_version: 4
|
|
193
|
-
summary: cucumber-pro-0.0.
|
|
193
|
+
summary: cucumber-pro-0.0.10
|
|
194
194
|
test_files:
|
|
195
195
|
- features/publish_results.feature
|
|
196
196
|
- features/security.feature
|