File: Rakefile

package info (click to toggle)
ruby-paranoia 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 160 kB
  • sloc: ruby: 351; makefile: 6
file content (10 lines) | stat: -rw-r--r-- 161 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
require 'bundler'
Bundler::GemHelper.install_tasks

task :test do
  Dir['test/*_test.rb'].each do |testfile|
    load testfile
  end
end

task :default => :test