flok 0.0.88 → 0.0.89
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/iface/driver/rtc_spec.rb +2 -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: 706dcd778d5637bdb3ba9681ce43217dd1710dfb
|
|
4
|
+
data.tar.gz: fd5961d3ed5c0fe775555c1b2d2aaedf73ed35eb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 669100d24ac2d654241fb477269f249ce1f043e78e7668becbc990392647d5d6e62915d9b5c0fddd7fb03ace961eab20ff4bf81f67496e13a094a660b125887d
|
|
7
|
+
data.tar.gz: bf1ca2fd0a1271a1533eb74b2274eb84d2c1949e0f13541110fceb487852cc86dbb98f64e8a7ecbd7cf09323d2aa37599c2f459ba24f49d37c07ef83f55963fb
|
data/lib/flok/version.rb
CHANGED
|
@@ -16,10 +16,10 @@ RSpec.describe "iface:driver:rtc" do
|
|
|
16
16
|
|
|
17
17
|
#Wait to start until after the 1st event fires to make sure timer started up
|
|
18
18
|
@pipe.readline
|
|
19
|
-
expect(@pipe).to readline_and_equal_json_x_within_y_seconds([
|
|
19
|
+
expect(@pipe).to readline_and_equal_json_x_within_y_seconds([1, "int_rtc", Fixnum], 5.seconds)
|
|
20
20
|
start_time = Time.now.to_i
|
|
21
21
|
5.times do
|
|
22
|
-
expect(@pipe).to readline_and_equal_json_x_within_y_seconds([
|
|
22
|
+
expect(@pipe).to readline_and_equal_json_x_within_y_seconds([1, "int_rtc", Fixnum], 2.seconds)
|
|
23
23
|
end
|
|
24
24
|
end_time = Time.now.to_i
|
|
25
25
|
|