When I run 'rake' with no arguments rspec and cucumber will trigger automatically. I'd like the jasmine:ci task to also run when this happens. How do I achieve this?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

In your Rakefile you can define custom tasks:

task :my_task do           #define custom task
  puts 'my own task"
end

task :default => 'my_task' #set task "my_task" as default task
                           #this task will execute on 'rake' running
link|improve this answer
Yeah, that works pretty well. If use "task :default => ['spec', 'jasmine:ci', 'cucumber']" it'll stop on the first task that has a failing test, which is ideal. Thanks! – Greg Malcolm Jun 27 '11 at 2:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.