File: Rakefile

package info (click to toggle)
pg-ldap-sync 0.5.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 164 kB
  • sloc: ruby: 424; makefile: 4
file content (13 lines) | stat: -rw-r--r-- 229 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- ruby -*-
require "bundler/gem_tasks"
require "rake/testtask"

CLEAN.include "temp"

Rake::TestTask.new(:test) do |t|
  t.libs << "test"
  t.libs << "lib"
  t.test_files = FileList["test/**/test_*.rb"]
end

task gem: :build