Skip to content

Commit

Permalink
Initial commit of Rakefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
wkranec committed Jun 17, 2011
1 parent c3b2499 commit 80274f1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Rakefile
@@ -0,0 +1,10 @@
require 'rake'
require 'rake/testtask'

task :default => [:test_units]

Rake::TestTask.new("test_units") do |t|
t.pattern = 'test/*.rb'
t.verbose = true
t.warning = true
end

0 comments on commit 80274f1

Please sign in to comment.