public
Description: CruiseControl.rb Campfire notifications
Homepage: http://opensource.thinkrelevance.com/wiki/smoke_signals
Clone URL: git://github.com/relevance/smoke_signals.git
smoke_signals / Rakefile
100644 14 lines (11 sloc) 0.276 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'rake'
require 'rake/testtask'
 
desc 'Default: run tests.'
task :default => :test
 
desc 'Default for CruiseControl'
task :cruise => :test
 
desc 'Test the relevance_tools plugin.'
Rake::TestTask.new(:test) do |t|
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end