forked from dim/ruby-net-ldap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
33 lines (27 loc) · 1.13 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- ruby -*-
require 'rubygems'
require 'hoe'
# Add 'lib' to load path.
$LOAD_PATH.unshift( "#{File.dirname(__FILE__)}/lib" )
# Pull in local 'net/ldap' as opposed to an installed version.
require 'net/ldap'
Hoe.new('ruby-net-ldap', Net::LDAP::VERSION) do |p|
p.developer('Francis Cianfrocca', '[email protected]')
p.developer('Emiel van de Laar', '[email protected]')
end
begin
require 'jeweler'
Jeweler::Tasks.new do |spec|
spec.name = "ruby-net-ldap"
spec.summary = "Pure Ruby LDAP library"
spec.email = "[email protected]"
spec.homepage = "http://github.com/dim/ruby-net-ldap"
spec.description = "Net::LDAP is a feature-complete LDAP support library written in pure Ruby. It supports most LDAP client features and a subset of server features as well."
spec.authors = ["Francis Cianfrocca", "Emiel van de Laar", "Tom Copeland", "Austin Ziegler", "Dimitrij Denissenko"]
spec.test_files = Dir.glob('test*/**')
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
# vim: syntax=Ruby