Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
add Rakefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mkdynamic authored and jeremy committed Jul 1, 2010
1 parent f96fc15 commit 7fd4e41
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Rakefile
@@ -0,0 +1,12 @@
require 'rake'
require 'rake/testtask'

desc 'Default: run acts_as_list unit tests.'
task :default => :test

desc 'Test the acts_as_ordered_tree plugin.'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.pattern = 'test/**/*_test.rb'
t.verbose = true
end

0 comments on commit 7fd4e41

Please sign in to comment.