-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathruby-ldap.gemspec
More file actions
27 lines (22 loc) · 868 Bytes
/
ruby-ldap.gemspec
File metadata and controls
27 lines (22 loc) · 868 Bytes
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
require 'rubygems'
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'ruby-ldap'
s.version = "0.9.20"
s.summary = 'Ruby/LDAP is an extension module for Ruby'
s.description = <<-EOF
It provides the interface to some LDAP libraries (e.g. OpenLDAP, Netscape SDK and Active Directory). The common API for application development is described in RFC1823 and is supported by Ruby/LDAP.
EOF
s.author = 'Alexey Chebotar'
s.email = 'alexey.chebotar@gmail.com'
s.rubyforge_project = 'ruby-ldap'
s.homepage = 'http://ruby-ldap.sourceforge.net/'
s.has_rdoc = true
s.require_path = 'lib'
s.files = [ 'ChangeLog', 'COPYING', 'FAQ', 'NOTES', 'README', 'TODO' ]
s.files += Dir.glob('**/*.rb')
s.files += Dir.glob('**/*.h')
s.files += Dir.glob('**/*.c')
s.files += Dir.glob('**/*.def')
s.extensions = ['extconf.rb']
end