Skip to content

Instantly share code, notes, and snippets.

@deadprogram
Created January 27, 2011 06:00
Show Gist options
  • Save deadprogram/798136 to your computer and use it in GitHub Desktop.
Save deadprogram/798136 to your computer and use it in GitHub Desktop.
# rake tasks go here
task :default => :spec
task :spec do
Dir[File.dirname(__FILE__) + "/spec/**/*_spec.rb"].each do |path|
require_relative path
end
MiniTest::Unit.autorun
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment