Sha256: 12fbb9af2180369a1f4df1bd967b8824b591c7b8c8f6383176446efcb2549d12

Contents?: true

Size: 1000 Bytes

Versions: 1

Compression:

Stored size: 1000 Bytes

Contents

# Look in the tasks/setup.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the tasks directory
# are where the options are used.

load 'tasks/setup.rb'

ensure_in_path 'lib'
require 'tournament'

task :default => 'spec:run'

depend_on 'main'
depend_on 'rake'
depend_on 'rails', '=2.2.2'
depend_on 'sqlite3-ruby'


PROJ.name = 'tournament'
PROJ.authors = 'Douglas A. Seifert'
PROJ.email = 'doug+rubyforge@dseifert.net'
PROJ.url = 'http://www.dseifert.net/code/tournament'
PROJ.rubyforge.name = 'tournament'
PROJ.version = '2.5.2'
PROJ.group_id = 5863

PROJ.spec.opts << '--color'

PROJ.exclude = %w(tmp$ bak$ ~$ CVS \.svn ^pkg ^doc bin/fake bin/gui_v2.rb)
PROJ.exclude << '^tags$'

PROJ.rdoc.opts = ["--line-numbers", "--force-update", "-W", "http://tournament.rubyforge.org/svn/trunk/%s"]
PROJ.rdoc.exclude = [
  "webgui\/vendor\/plugins\/restful_authentication\/notes\/.+\.txt",
  "webgui\/db\/migrate\/teams.txt",
  "webgui\/public\/robots.txt"
]
# EOF

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tournament-2.5.2 Rakefile