acpc_poker_types 7.8.2 → 7.8.3
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/acpc_poker_types/match_state.rb +7 -2
- data/lib/acpc_poker_types/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9b3e5d0479367288537eb912da5984f1c0977c60
|
|
4
|
+
data.tar.gz: af626f4f3dc5fb429cd541286a1bdf7423e3d7f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0919e1f36a21e033e435c274d1ce18af16bdcbaa8787e3ab91e9d33f1f5c196aaa451a212f6d156a266addf5bf6e55698ac742f1a49f01edb4345836d3cf4c6d'
|
|
7
|
+
data.tar.gz: 5dbc7cded2acf11d0632791a4a50626cefb2ec18f1d0cc58bcfe7e6fc82a519531164772848c74144b258a60d5d694fc52e39dc621f4740873a214c584fbb92f
|
|
@@ -363,8 +363,13 @@ class MatchState < DelegateClass(String)
|
|
|
363
363
|
end
|
|
364
364
|
|
|
365
365
|
def next_to_act(game_def)
|
|
366
|
-
|
|
367
|
-
|
|
366
|
+
unless @next_to_act
|
|
367
|
+
if hand_ended?(game_def)
|
|
368
|
+
@next_to_act = nil
|
|
369
|
+
else
|
|
370
|
+
every_action game_def
|
|
371
|
+
end
|
|
372
|
+
end
|
|
368
373
|
@next_to_act
|
|
369
374
|
end
|
|
370
375
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: acpc_poker_types
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.8.
|
|
4
|
+
version: 7.8.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dustin Morrill
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-01-
|
|
11
|
+
date: 2017-01-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: process_runner
|