acpc_poker_types 7.6.3 → 7.6.4
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/Rakefile +2 -0
- data/acpc_poker_types.gemspec +1 -1
- data/lib/acpc_poker_types/version.rb +1 -1
- metadata +23 -23
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 47e0c8b9dd9b799cb3d4d66b10c803b55d24b748
|
|
4
|
+
data.tar.gz: bdf963c05df26543a8b5d89634ee375ee29a682b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8c88d11c93751f0fedf0b600f5a689cd937a024b4db1998ddc3fe72a012e6fba232fe9bb6b4a987d8ff4c3c5bac5b0e3353e6d47fce0881bf847081947af7c7a
|
|
7
|
+
data.tar.gz: 0e02943c1bc8a3886cecc3871c61f5503c70af412251bd90add21072deed53ad017444f53c8e38bac71eae898d0044c1d532a47f6edd372c0a763c520ef31eea
|
data/Rakefile
CHANGED
data/acpc_poker_types.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
|
|
12
12
|
s.license = 'MIT'
|
|
13
13
|
|
|
14
14
|
s.add_dependency 'process_runner', '~> 0.0'
|
|
15
|
-
s.add_dependency 'acpc_dealer', '~>
|
|
15
|
+
s.add_dependency 'acpc_dealer', '~> 3.0'
|
|
16
16
|
s.add_dependency 'celluloid', '~> 0.14'
|
|
17
17
|
s.add_dependency 'contextual_exceptions', '~> 0.0'
|
|
18
18
|
s.add_dependency 'inflections', '~> 3.2'
|
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.6.
|
|
4
|
+
version: 7.6.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dustin Morrill
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-01-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: process_runner
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
33
|
+
version: '3.0'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
40
|
+
version: '3.0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: celluloid
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -226,34 +226,34 @@ signing_key:
|
|
|
226
226
|
specification_version: 4
|
|
227
227
|
summary: ACPC Poker Types
|
|
228
228
|
test_files:
|
|
229
|
-
- spec/
|
|
230
|
-
- spec/
|
|
231
|
-
- spec/
|
|
232
|
-
- spec/
|
|
233
|
-
- spec/game_definition_spec.rb
|
|
229
|
+
- spec/acpc_poker_types_spec.rb
|
|
230
|
+
- spec/board_cards_spec.rb
|
|
231
|
+
- spec/card_spec.rb
|
|
232
|
+
- spec/chip_stack_spec.rb
|
|
234
233
|
- spec/dealer_data/action_messages_spec.rb
|
|
235
|
-
- spec/dealer_data/match_definition_spec.rb
|
|
236
|
-
- spec/dealer_data/hand_results_spec.rb
|
|
237
234
|
- spec/dealer_data/hand_data_spec.rb
|
|
235
|
+
- spec/dealer_data/hand_results_spec.rb
|
|
236
|
+
- spec/dealer_data/match_definition_spec.rb
|
|
238
237
|
- spec/dealer_data/poker_match_data_spec.rb
|
|
238
|
+
- spec/game_definition_spec.rb
|
|
239
|
+
- spec/hand_player_group_spec.rb
|
|
239
240
|
- spec/hand_player_spec.rb
|
|
240
|
-
- spec/player_spec.rb
|
|
241
|
-
- spec/pile_of_cards_spec.rb
|
|
242
|
-
- spec/acpc_poker_types_spec.rb
|
|
243
241
|
- spec/hand_spec.rb
|
|
244
|
-
- spec/
|
|
242
|
+
- spec/match_state_spec.rb
|
|
243
|
+
- spec/pile_of_cards_spec.rb
|
|
244
|
+
- spec/player_spec.rb
|
|
245
245
|
- spec/players_at_the_table_spec.rb
|
|
246
|
-
- spec/hand_player_group_spec.rb
|
|
247
|
-
- spec/card_spec.rb
|
|
248
246
|
- spec/poker_action_spec.rb
|
|
249
|
-
- spec/
|
|
250
|
-
- spec/
|
|
251
|
-
- spec/
|
|
252
|
-
- spec/support/dealer_logs/3p.limit.h1000.r0.log
|
|
253
|
-
- spec/support/dealer_logs/3p.nolimit.h1000.r0.log
|
|
247
|
+
- spec/rank_spec.rb
|
|
248
|
+
- spec/seat_spec.rb
|
|
249
|
+
- spec/suit_spec.rb
|
|
254
250
|
- spec/support/dealer_logs/2p.limit.h1000.r0.actions.log
|
|
255
251
|
- spec/support/dealer_logs/2p.limit.h1000.r0.log
|
|
256
|
-
- spec/support/dealer_logs/3p.limit.h1000.r0.actions.log
|
|
257
252
|
- spec/support/dealer_logs/2p.nolimit.h1000.r0.actions.log
|
|
253
|
+
- spec/support/dealer_logs/2p.nolimit.h1000.r0.log
|
|
254
|
+
- spec/support/dealer_logs/3p.limit.h1000.r0.actions.log
|
|
255
|
+
- spec/support/dealer_logs/3p.limit.h1000.r0.log
|
|
256
|
+
- spec/support/dealer_logs/3p.nolimit.h1000.r0.actions.log
|
|
257
|
+
- spec/support/dealer_logs/3p.nolimit.h1000.r0.log
|
|
258
258
|
- spec/support/spec_helper.rb
|
|
259
259
|
has_rdoc:
|