public
Description: Player for the Ruby Sparring Battleship tournament
Homepage: http://iannopollo.com
Clone URL: git://github.com/siannopollo/joshua_son_of_nun.git
joshua_son_of_nun / Battleship.Rakefile
100644 12 lines (10 sloc) 0.317 kb
1
2
3
4
5
6
7
8
9
10
11
12
#
# DO NOT tamper with this file. It will lead to disqualification.
 
require 'rake'
require 'spec/rake/spectask'
 
desc "Run all examples with RCov"
Spec::Rake::SpecTask.new('spec_with_rcov') do |t|
  t.spec_files = FileList['spec/**/*.rb']
  t.rcov = true
  t.rcov_opts = ['-t', '--exclude', 'spec', '--no-html']
end