Sha256: 0cd93f113dd500755a725f1d09fbf260bcb5d3fa60f0f703c9c395da70a54b51
Contents?: true
Size: 825 Bytes
Versions: 1
Compression:
Stored size: 825 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.1' 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", "--inline-source"] PROJ.rdoc.template = "tasks/jamis.rb" # EOF
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tournament-2.5.1 | Rakefile |