flok 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/lib/flok/version.rb +1 -1
- data/spec/drivers/net_spec.rb +2 -2
- data/spec/helpers.rb +0 -2
- 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: bbc34b1cdea6474b865fa0caa8277bd36f9b3252
|
|
4
|
+
data.tar.gz: db3295f32a7f24c998e22a93ca7e5127d7344051
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec2f4817bd431ce60ccbe4160856db607a1ef7a6fa2bd208d821d14b9216325dd76e1a2daa75f63d46f032f4579993d1f7b1204dc045ec4b06346d8e02274c91
|
|
7
|
+
data.tar.gz: a6d11b71b7c39f0780d7aaee1e4cd92caad9ee02eb142d68362a2c18355a60484f61dc1e688799414824da8137a19fa67d781f0d370594447ee9a08248a11f8f
|
data/lib/flok/version.rb
CHANGED
data/spec/drivers/net_spec.rb
CHANGED
|
@@ -17,8 +17,8 @@ RSpec.describe "Drivers::Net" do
|
|
|
17
17
|
|
|
18
18
|
#Stopgap to kill everything
|
|
19
19
|
if OS.mac?
|
|
20
|
-
`ps -ax | grep net_spec | awk '{print $1}' | grep -v #{Process.pid} | xargs kill -9
|
|
21
|
-
|
|
20
|
+
`ps -ax | grep net_spec | awk '{print $1}' | grep -v #{Process.pid} | xargs kill -9 >/dev/null 2>&1`;
|
|
21
|
+
`ps -ax | grep phantomjs| awk '{print $1}' | xargs kill -9 >/dev/null 2>&1`
|
|
22
22
|
end
|
|
23
23
|
end
|
|
24
24
|
|
data/spec/helpers.rb
CHANGED
|
@@ -52,7 +52,6 @@ module Webbing
|
|
|
52
52
|
attr_accessor :port
|
|
53
53
|
|
|
54
54
|
def kill
|
|
55
|
-
puts "killing #{@pid}"
|
|
56
55
|
Process.kill("KILL", @pid)
|
|
57
56
|
end
|
|
58
57
|
|
|
@@ -124,7 +123,6 @@ class ChromeRunner
|
|
|
124
123
|
end
|
|
125
124
|
|
|
126
125
|
def kill
|
|
127
|
-
puts "killing #{@pid}"
|
|
128
126
|
Process.kill("KILL", @pid)
|
|
129
127
|
end
|
|
130
128
|
end
|