modsvaskr 0.1.1 → 0.1.2
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/modsvaskr/in_game_tests_runner.rb +4 -0
- data/lib/modsvaskr/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 759a86a5ea5ddbba8ed9bcf56ece81b83324dca028af137e2bf948402f5900ad
|
|
4
|
+
data.tar.gz: 596259ae4f2e3904ac555eef656bd6be5f7ab18047fc87ba50263978f67a5f5d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37902323f88d35bcdf80abb62a1e1c14d8db78dd4ecf37aa0d0a8afabba6b17fad5f653863f5f08f9a5309665bef39838ad120315919f7dca1b9a01de185ef3b
|
|
7
|
+
data.tar.gz: a24f76d9bb884fde1e1046b28e5082da0cfc451767c272a5e70eb22a0b203d211b08f92cdec173eafbbbae07b842c27f63dfb63f94fde5827ca280e5bfb2e0de
|
|
@@ -204,6 +204,10 @@ module Modsvaskr
|
|
|
204
204
|
end
|
|
205
205
|
end
|
|
206
206
|
# We will start again. Leave some time to interrupt if we want.
|
|
207
|
+
unless @config.no_prompt
|
|
208
|
+
# First, flush stdin of any pending character
|
|
209
|
+
$stdin.getc while !select([$stdin], nil, nil, 2).nil?
|
|
210
|
+
end
|
|
207
211
|
out "We are going to start again in #{@game.timeout_interrupt_tests_secs} seconds. Press Enter now to interrupt it."
|
|
208
212
|
key_pressed =
|
|
209
213
|
begin
|
data/lib/modsvaskr/version.rb
CHANGED