pokerstats 2.0.8 → 2.0.9
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/pokerstats/pokerstars_hand_history_parser.rb +1 -1
- data/pokerstats.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.0.
|
1
|
+
2.0.9
|
@@ -66,7 +66,7 @@ module Pokerstats
|
|
66
66
|
when /PokerStars Game #([0-9]+): +([^(]*) \((#{CASH})\/(#{CASH})\) - (.*)$/
|
67
67
|
@stats.update_hand :name => "PS#{$1}", :description=> "#{$2} (#{$3}/#{$4})", :tournament=> nil, :sb=> cash_to_d($3), :bb=> cash_to_d($4), :played_at=> Time.parse($5), :street => :prelude, :board => ""
|
68
68
|
when /PokerStars Game #([0-9]+): +([^(]*) \((#{CASH})\/(#{CASH}) USD\) - (.*)$/
|
69
|
-
|
69
|
+
@stats.update_hand :name => "PS#{$1}", :description=> "#{$2} (#{$3}/#{$4})", :tournament=> nil, :sb=> cash_to_d($3), :bb=> cash_to_d($4), :played_at=> Time.parse($5), :street => :prelude, :board => ""
|
70
70
|
when /PokerStars Game #([0-9]+):/
|
71
71
|
raise HandHistoryParseError, "invalid hand record: #{line}"
|
72
72
|
when /\*\*\* HOLE CARDS \*\*\*/
|
data/pokerstats.gemspec
CHANGED