RSpec create the /specdoc folder if needed.
In this way, we don't get this folder for free every time rake evaluates the tasks.
This commit is contained in:
parent
efb3938f7c
commit
b7430aeb8c
|
@ -9,7 +9,6 @@ namespace :spec do
|
||||||
desc 'Generate HTML Specdocs for all specs.'
|
desc 'Generate HTML Specdocs for all specs.'
|
||||||
RSpec::Core::RakeTask.new(:specdoc) do |t|
|
RSpec::Core::RakeTask.new(:specdoc) do |t|
|
||||||
specdoc_path = File.expand_path('../../specdoc', __FILE__)
|
specdoc_path = File.expand_path('../../specdoc', __FILE__)
|
||||||
Dir.mkdir(specdoc_path) if !File.exist?(specdoc_path)
|
|
||||||
|
|
||||||
t.rspec_opts = %W( --format html --out #{File.join(specdoc_path, 'index.html')} )
|
t.rspec_opts = %W( --format html --out #{File.join(specdoc_path, 'index.html')} )
|
||||||
t.fail_on_error = false
|
t.fail_on_error = false
|
||||||
|
|
Loading…
Reference in New Issue