wizardwerdna-pokerstats 1.0.16 → 1.0.17

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.16
1
+ 1.0.17
@@ -10,13 +10,18 @@ class CreatePokerstats < ActiveRecord::Migration
10
10
  t.timestamps
11
11
  end
12
12
  create_table :player_statistics do |t|
13
- t.integer :hand_statistics_id
13
+ t.integer :hand_statistic_id
14
+ t.integer :player_id
14
15
  <%= HandStatistics.player_statistics_migration_data -%>
15
16
  t.timestamps
16
17
  end
18
+ create_table :player
19
+ t.string :name
20
+ end
17
21
  end
18
22
 
19
23
  def self.down
24
+ drop_table :player
20
25
  drop_table :player_statistics
21
26
  drop_table :hand_statistics
22
27
  end
data/pokerstats.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{pokerstats}
8
- s.version = "1.0.16"
8
+ s.version = "1.0.17"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Andrew C. Greenberg"]
12
- s.date = %q{2009-09-01}
12
+ s.date = %q{2009-09-02}
13
13
  s.default_executable = %q{checkps}
14
14
  s.description = %q{a library for extracting, computing and reporting statistics of poker hands parsed from hand history files}
15
15
  s.email = %q{wizardwerdna@gmail.com}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wizardwerdna-pokerstats
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.16
4
+ version: 1.0.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew C. Greenberg
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-09-01 00:00:00 -07:00
12
+ date: 2009-09-02 00:00:00 -07:00
13
13
  default_executable: checkps
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency