rakefile.rb 240 B

1234567891011121314
  1. require 'rake/testtask'
  2. Rake::TestTask.new do |t|
  3. t.libs.push "lib"
  4. t.test_files = FileList['test/*_test.rb']
  5. t.verbose = true
  6. end
  7. desc 'build documentation'
  8. task :doc do
  9. sh "rdoc lib LICENSE.rdoc README.rdoc -m README.rdoc"
  10. end