Skip to content

Commit

Permalink
Fixed rake breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
cykod committed Apr 7, 2010
1 parent 374f06f commit 0158a46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tasks/webiva_rspec.rake
Expand Up @@ -37,7 +37,7 @@ namespace :spec do

desc "Run all the specs in an individual modules directory"
Spec::Rake::SpecTask.new(:webiva_module_rcov) do |t|
module_name =ENV['MODULE'].underscore
module_name =ENV['MODULE'].to_s.underscore
t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
t.spec_files = FileList["vendor/modules/#{module_name}/spec/**/*_spec.rb"]
t.rcov = true
Expand Down

0 comments on commit 0158a46

Please sign in to comment.