acpc_poker_types 7.5.0 → 7.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 24b1ae84329dfaa9dac79bbfb0cba092682f68b9
4
- data.tar.gz: 32a4f028764cdf4bae820490b3dbc6d840404652
3
+ metadata.gz: d18e6beaa53b55a84a197898627ecf4d3af23d7e
4
+ data.tar.gz: 34df880a2fccadd74722f97cd0a2842c69526207
5
5
  SHA512:
6
- metadata.gz: 02df0c4f20beb7e2748f7bb87afafc693743d05759f5282ceb8ec8c4e5b3d9fa78360382d3cfaa2eae8ab37c1dfc7c45808b5543f12e597cfbd833f143080cb2
7
- data.tar.gz: 83df022f017169e0b0085624c88506d36b298c92b2f8a8a547fe42bf310ae35227036d4a89e9281705c30d4cdfc908d3ce95b3a947bb3d82b06f49e619ade610
6
+ metadata.gz: 614ab04b2ef68d6fb7961173b48f92e3d8f10427aee1f5e25dca4ac165e33e9b5acfcb277d27a378688c2d2548dc5ca861da97c70dc2fb37af0614ff68a7b906
7
+ data.tar.gz: e989357b69373ecff2a71de8407b995186c81677ccc42071345bc6c8fcf85ecce736d6a6a0633aee3d928e5a9ba5621ef59fb08a420f3f8310dbe12cd654cb9a
@@ -68,7 +68,7 @@ module AcpcPokerTypes
68
68
  hand_number,
69
69
  game_def
70
70
  )]
71
- "Hand ##{hand_number} of #{number_of_hands} dealt by #{dealer_player}, #{small_blind_payer} pays SB (#{game_def.blinds.min}), #{big_blind_payer} pays BB (#{game_def.blinds.max})"
71
+ "hand ##{hand_number} of #{number_of_hands} dealt by #{dealer_player}, #{small_blind_payer} pays SB (#{game_def.blinds.min}), #{big_blind_payer} pays BB (#{game_def.blinds.max})"
72
72
  end
73
73
  def hand_win_description(player, amount_won, current_balance)
74
74
  "#{player} wins #{amount_won}, bringing their balance to #{current_balance + amount_won}"
@@ -1,3 +1,3 @@
1
1
  module AcpcPokerTypes
2
- VERSION = '7.5.0'
2
+ VERSION = '7.5.1'
3
3
  end
@@ -86,7 +86,7 @@ END GAMEDEF
86
86
  it 'when player A folds: A folds' do
87
87
  fold_description('A').must_equal 'A folds'
88
88
  end
89
- it 'when the xth hand is dealt by player A, and A is small blind, while player B is big blind: Hand #x of y dealt by A, A pays SB (5), B pays BB (10)' do
89
+ it 'when the xth hand is dealt by player A, and A is small blind, while player B is big blind: hand #x of y dealt by A, A pays SB (5), B pays BB (10)' do
90
90
  x = 23
91
91
  y = 100
92
92
  p1 = 'A'
@@ -96,7 +96,7 @@ END GAMEDEF
96
96
  x,
97
97
  @l_game_def,
98
98
  y
99
- ).must_equal "Hand ##{x} of #{y} dealt by #{p1}, #{p1} pays SB (#{@l_game_def.blinds.min}), #{p2} pays BB (#{@l_game_def.blinds.max})"
99
+ ).must_equal "hand ##{x} of #{y} dealt by #{p1}, #{p1} pays SB (#{@l_game_def.blinds.min}), #{p2} pays BB (#{@l_game_def.blinds.max})"
100
100
  end
101
101
 
102
102
  describe 'hand result messages' do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acpc_poker_types
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.5.0
4
+ version: 7.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dustin Morrill