public
Description: Simple tool to help track git and svn vendor branches in a git repository
Homepage: http://github.com/evilchelu/braid/wikis/home
Clone URL: git://github.com/evilchelu/braid.git
evilchelu (author)
Sat Jul 05 15:29:35 -0700 2008
commit  961a9e3669d83f2332cfec7f05811e8fa5918d5b
tree    8f733f1fc9b2b6322eab0f6aba5c6b173689e7cd
parent  c70abc1050fced559d87027f7be6889bee3002bb
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