Skip to content

Commit

Permalink
update readme links
Browse files Browse the repository at this point in the history
  • Loading branch information
geraldb committed Dec 3, 2012
1 parent fa1dbd9 commit 36c7c1b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
22 changes: 11 additions & 11 deletions README.md
Expand Up @@ -15,27 +15,27 @@ Get a copy of the `sport.db` file. That's it.


International w/ national teams (e.g. Austria, England, etc.) International w/ national teams (e.g. Austria, England, etc.)


* [World Cup Quali 2012/13, World Cup 2010](https://github.com/geraldb/sport.db/tree/master/db/world) * [World Cup Quali 2012/13, World Cup 2010](https://github.com/geraldb/sport.db/tree/master/world)
* [UEFA European Football Championship (Euro) 2012, 2008](https://github.com/geraldb/sport.db/tree/master/db/euro) * [UEFA European Football Championship (Euro) 2012, 2008](https://github.com/geraldb/sport.db/tree/master/euro)


International w/ football club teams (e.g. FC Barcelona, Manchester Utd, etc.) International w/ football club teams (e.g. FC Barcelona, Manchester Utd, etc.)


* [UEFA Champions League 2011/12, 2012/13](https://github.com/geraldb/sport.db/tree/master/db/cl) * [UEFA Champions League 2011/12, 2012/13](https://github.com/geraldb/sport.db/tree/master/cl)
* [UEFA Europa League 2011/12](https://github.com/geraldb/sport.db/tree/master/db/cl) * [UEFA Europa League 2011/12](https://github.com/geraldb/sport.db/tree/master/cl)


National leagues & cups w/ football club teams National leagues & cups w/ football club teams


* [English Permier League 2012/13](https://github.com/geraldb/sport.db/tree/master/db/en) * [English Permier League 2012/13](https://github.com/geraldb/sport.db/tree/master/en)
* [Deutsche Bundesliga 2012/13](https://github.com/geraldb/sport.db/tree/master/db/de) * [Deutsche Bundesliga 2012/13](https://github.com/geraldb/sport.db/tree/master/de)
* [Österreichische Bundesliga 2011/12, 2012/13](https://github.com/geraldb/sport.db/tree/master/db/at), [ÖFB Cup 2011/12, 2012/13](https://github.com/geraldb/sport.db/tree/master/db/at) * [Österreichische Bundesliga 2011/12, 2012/13](https://github.com/geraldb/sport.db/tree/master/at), [ÖFB Cup 2011/12, 2012/13](https://github.com/geraldb/sport.db/tree/master/db/at)
* [Romania Liga 1 2012/13](https://github.com/geraldb/sport.db/tree/master/db/ro) * [Romania Liga 1 2012/13](https://github.com/geraldb/sport.db/tree/master/ro)
* [México Primera División Apertura 2012](https://github.com/geraldb/sport.db/tree/master/db/mx) * [México Primera División Apertura 2012](https://github.com/geraldb/sport.db/tree/master/mx)


### Hockey ### Hockey


Hockey club teams Hockey club teams


* [National Hockey League (NHL) 2012](https://github.com/geraldb/sport.db/tree/master/db/nhl) * [National Hockey League (NHL) 2012](https://github.com/geraldb/sport.db/tree/master/nhl)


Anything missing? Add your leagues, teams, fixtures and more. Anything missing? Add your leagues, teams, fixtures and more.


Expand Down Expand Up @@ -141,7 +141,7 @@ The `sport.db` includes the following tables:
sportdb -c # create database schema sportdb -c # create database schema




See the [`sportdb` command line tool documentation](https://github.com/geraldb/sport.db/tree/master/script) for more. See the [`sportdb` command line tool documentation](https://github.com/geraldb/sport.db.ruby) for more.




## Build Your Own `sport.db` Version ## Build Your Own `sport.db` Version
Expand Down
7 changes: 4 additions & 3 deletions Rakefile
Expand Up @@ -6,8 +6,8 @@ require 'pp'
require 'sportdb' require 'sportdb'




BUILD_DIR = "." BUILD_DIR = "./build"
DATA_DIR = "./db" DATA_DIR = "."




SPORT_DB_PATH = "#{BUILD_DIR}/sport.db" SPORT_DB_PATH = "#{BUILD_DIR}/sport.db"
Expand All @@ -20,9 +20,10 @@ DB_CONFIG = {


task :default => 'release' task :default => 'release'


directory BUILD_DIR


desc "clean db build for release" desc "clean db build for release"
task :release => [:clean,:create,:import] do task :release => [BUILD_DIR, :clean,:create,:import] do
puts "hello from sport.db release build script" puts "hello from sport.db release build script"
end end


Expand Down

0 comments on commit 36c7c1b

Please sign in to comment.