Rake and Story HTML

Hi,

I have a rake file

require 'rake' require 'rake/runtest'

task :default => [:dcs]

task :dcs do
Rake.run_tests ‘projects/dcs/runner/**/*.rb’
end

That cycles through the runner folder and executes the tests.

However, I am unsure as to where I can run the ruby command with the
html format switch.

I am having trouble with Watir running through Team City so I am just
a sheduled batch file

cd
cd c:\workingDir
svn update
cd C:\workingDir\trunk
rake
PAUSE

Cheers

Aidy