pokerstats 2.0.11 → 2.0.12
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.12
|
@@ -18,7 +18,7 @@ module Pokerstats
|
|
18
18
|
|
19
19
|
def self.game(lines)
|
20
20
|
lines.lstrip!
|
21
|
-
case lines[/[
|
21
|
+
case lines[/[^\n]+/].chomp
|
22
22
|
when /PokerStars Game #([0-9]+): Tournament #([0-9]+), (\$[0-9+$]+) ([^\-]*) - Level ([IVXL]+) \((#{CASH})\/(#{CASH})\) - (.*)$/
|
23
23
|
"PS#{$1}"
|
24
24
|
when /PokerStars Game #([0-9]+): +([^(]*) \((#{CASH})\/(#{CASH})\) - (.*)$/
|
data/pokerstats.gemspec
CHANGED