evilchelu / braid

Simple tool to help track git and svn vendor branches in a git repository

This URL has Read+Write access

braid / Rakefile
100644 10 lines (8 sloc) 0.182 kb
1
2
3
4
5
6
7
8
9
10
desc "Run all specs by default"
task :default => :test
task :spec => :test
 
task :test do
  Dir[File.dirname(__FILE__) + '/test/**/*_spec.rb'].each do |file|
    load file
  end
end