Skip to content

Commit

Permalink
update Rakefile
Browse files Browse the repository at this point in the history
  • Loading branch information
shuber committed Apr 3, 2011
1 parent f90ebfc commit af00b62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Rakefile
Expand Up @@ -2,17 +2,17 @@ require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

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

desc 'Test the defined gem.'
desc 'Test the defined gem'
Rake::TestTask.new(:test) do |t|
t.libs += ['lib', 'test']
t.pattern = 'test/**/*_test.rb'
t.verbose = true
end

desc 'Generate documentation for the defined gem.'
desc 'Generate documentation for the defined gem'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'defined'
Expand Down

0 comments on commit af00b62

Please sign in to comment.