wizardwerdna-pokerstats 1.0.11 → 1.0.12
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.
- data/VERSION +1 -1
- data/lib/pokerstats/hand_statistics.rb +3 -3
- data/pokerstats.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.12
|
|
@@ -243,7 +243,7 @@ class HandStatistics
|
|
|
243
243
|
end
|
|
244
244
|
|
|
245
245
|
def self.hand_statistics_migration_data
|
|
246
|
-
HAND_REPORT_SPECIFICATION.inject(""
|
|
246
|
+
HAND_REPORT_SPECIFICATION.inject("") do |string, each|
|
|
247
247
|
string + "t.#{each[1]}\t#{each[0].inspect}\n"
|
|
248
248
|
end
|
|
249
249
|
end
|
|
@@ -282,5 +282,5 @@ end
|
|
|
282
282
|
Dir[File.dirname(__FILE__) + "/plugins/*_statistics.rb"].each {|filename| require File.expand_path(filename)}
|
|
283
283
|
HandStatistics.delegate_plugin_public_methods_except HandStatisticsAPI.public_methods
|
|
284
284
|
|
|
285
|
-
# puts HandStatistics.rails_migration_data
|
|
286
|
-
puts HandStatistics.hand_statistics_migration_data
|
|
285
|
+
# # puts HandStatistics.rails_migration_data
|
|
286
|
+
# puts HandStatistics.hand_statistics_migration_data
|
data/pokerstats.gemspec
CHANGED