Skip to content

Instantly share code, notes, and snippets.

@BrentonEarl
Forked from ream88/Rakefile
Last active August 29, 2015 14:10
Show Gist options
  • Save BrentonEarl/ab692cdbecd8953192bd to your computer and use it in GitHub Desktop.
Save BrentonEarl/ab692cdbecd8953192bd to your computer and use it in GitHub Desktop.
Minitest Rakefile with :test set to default
require 'rake/testtask'
Rake::TestTask.new do |t|
t.pattern = 'test/*_test.rb'
end
task(default: :test)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment