Skip to content

Commit f6b3f9c

Browse files
author
Jerry Cheung
committed
add rake
1 parent aaa4f52 commit f6b3f9c

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

Rakefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1+
#!/usr/bin/env rake
12
# -*- ruby encoding: utf-8 -*-
23
# vim: syntax=ruby
34

5+
require 'rake/testtask'
46

7+
Rake::TestTask.new do |t|
8+
t.libs << "test"
9+
t.test_files = FileList['test/**/test_*.rb']
10+
t.verbose = true
511
end
612

713
task :default => :test

net-ldap.gemspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,5 @@ the most recent LDAP RFCs (4510-4519, plutions of 4520-4532).}
3131
s.summary = %q{Net::LDAP for Ruby (also called net-ldap) implements client access for the Lightweight Directory Access Protocol (LDAP), an IETF standard protocol for accessing distributed directory services}
3232

3333
s.add_development_dependency("flexmock", "~> 1.3")
34+
s.add_development_dependency("rake", "~> 10.0")
3435
end

0 commit comments

Comments
 (0)