Navigation Menu

Skip to content

Commit

Permalink
update sportdb gems
Browse files Browse the repository at this point in the history
  • Loading branch information
geraldb committed Dec 4, 2012
1 parent 498bf52 commit 36f7fb9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 19 deletions.
7 changes: 3 additions & 4 deletions Gemfile
Expand Up @@ -6,11 +6,10 @@ gem 'kramdown' # all ruby markdown processor/engine
gem 'rails', '3.2.1'
gem 'rails-i18n' # see https://github.com/svenfuchs/rails-i18n

gem 'sportdb', '0.8.1' # see https://github.com/geraldb/sport.db
gem 'sportdb', '0.9.2' # see https://github.com/geraldb/sport.db.ruby

### todo/fix: make it work w/ autoload - will sportdb/market work?
gem 'sportdb-market', '0.1.3', require: 'sportdb/market/market'
gem 'sportdb-play', '0.1.0'
gem 'sportdb-market', '0.3.0' # see https://github.com/geraldb/sport.db.ruby-market
gem 'sportdb-play', '0.2.0' # see https://github.com/geraldb/sport.db-play

group :production do
gem 'pg'
Expand Down
16 changes: 8 additions & 8 deletions Gemfile.lock
Expand Up @@ -97,11 +97,11 @@ GEM
railties (~> 3.2.0)
sass (>= 3.1.10)
tilt (~> 1.3)
sportdb (0.8.1)
sportdb (0.9.2)
activerecord (~> 3.2)
worlddb (~> 0.3.2)
sportdb-market (0.1.3)
sportdb-play (0.1.0)
worlddb (~> 0.5.0)
sportdb-market (0.3.0)
sportdb-play (0.2.0)
sprockets (2.1.2)
hike (~> 1.2)
rack (~> 1.0)
Expand All @@ -121,7 +121,7 @@ GEM
uglifier (1.2.3)
execjs (>= 0.3.0)
multi_json (>= 1.0.2)
worlddb (0.3.2)
worlddb (0.5.0)
activerecord (~> 3.2)

PLATFORMS
Expand All @@ -140,9 +140,9 @@ DEPENDENCIES
rails-i18n
ri_cal
sass-rails (~> 3.2.3)
sportdb (= 0.8.1)
sportdb-market (= 0.1.3)
sportdb-play (= 0.1.0)
sportdb (= 0.9.2)
sportdb-market (= 0.3.0)
sportdb-play (= 0.2.0)
sqlite3
thin
uglifier (>= 1.0.3)
13 changes: 6 additions & 7 deletions db/schema.rb
Expand Up @@ -115,7 +115,6 @@
end

create_table "events", :force => true do |t|
t.string "title", :null => false
t.string "key", :null => false
t.integer "league_id", :null => false
t.integer "season_id", :null => false
Expand Down Expand Up @@ -244,14 +243,14 @@
t.integer "event_id", :null => false
t.string "title", :null => false
t.integer "user_id", :null => false
t.boolean "fix", :default => false, :null => false
t.boolean "public", :default => true, :null => false
t.boolean "locked", :default => false, :null => false
t.text "welcome"
t.text "welcome_html"
t.string "key"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.boolean "fix", :default => false, :null => false
t.text "welcome"
t.text "welcome_html"
end

add_index "pools", ["event_id"], :name => "index_pools_on_event_id"
Expand Down Expand Up @@ -370,12 +369,12 @@
t.integer "score5"
t.integer "score6"
t.string "toto12x"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.string "type"
t.boolean "calc", :default => false, :null => false
t.integer "calc_team1_id"
t.integer "calc_team2_id"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end

add_index "tips", ["game_id"], :name => "index_tips_on_game_id"
Expand All @@ -384,10 +383,10 @@
add_index "tips", ["user_id"], :name => "index_tips_on_user_id"

create_table "users", :force => true do |t|
t.string "key", :null => false
t.string "name", :null => false
t.string "email", :null => false
t.string "password_digest"
t.string "key", :null => false
t.boolean "admin", :default => false, :null => false
t.boolean "guest", :default => false, :null => false
t.boolean "active", :default => true, :null => false
Expand Down

0 comments on commit 36f7fb9

Please sign in to comment.