Skip to content

Instantly share code, notes, and snippets.

@chriskottom
Created September 12, 2017 08:41
Show Gist options
  • Save chriskottom/2783f901df6f6f2fad2a4a5eb69d9596 to your computer and use it in GitHub Desktop.
Save chriskottom/2783f901df6f6f2fad2a4a5eb69d9596 to your computer and use it in GitHub Desktop.
Rake::TestTask with verbose output
require 'rake/testtask'
Rake::TestTask.new(:test) do |t|
t.libs = %w(lib test)
t.pattern = 'test/**/*_test.rb'
t.options = '-v'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment