Moved default rake task to default.rake. Now runs cucumber, rspec, and jasmine.

This commit is contained in:
Sarah Mei 2010-10-30 11:51:54 -07:00
parent 3bd3a63c5d
commit 08a70e4980
2 changed files with 1 additions and 2 deletions

View file

@ -40,8 +40,6 @@ begin
Rake.application.instance_variable_get('@tasks').delete('default')
task :default => [:cucumber, :spec]
task :features => :cucumber do
STDERR.puts "*** The 'features' task is deprecated. See rake -T cucumber ***"
end

1
lib/tasks/default.rake Normal file
View file

@ -0,0 +1 @@
task :default => [:cucumber, :spec, :'jasmine:ci']