Ideally it would be nice if the rake task used personalized RSpec settings on a per user basis, but until someone figures that out color would be nice
Signed-off-by: Matt Robinson <[email protected]> --- Rakefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Rakefile b/Rakefile index 416bafb..52af913 100644 --- a/Rakefile +++ b/Rakefile @@ -50,7 +50,7 @@ task :spec do end Spec::Rake::SpecTask.new do |t| - t.spec_opts = ['--format','s', '--loadby','mtime'] + t.spec_opts = ['--format','s', '--loadby','mtime', '--color'] t.spec_files = FileList['spec/**/*.rb'] t.fail_on_error = false if defined?(Rcov) -- 1.7.1 -- You received this message because you are subscribed to the Google Groups "Puppet Developers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-dev?hl=en.
