-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathldap_fluff.gemspec
25 lines (21 loc) · 1.08 KB
/
ldap_fluff.gemspec
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
Gem::Specification.new do |s|
s.name = 'ldap_fluff'
s.version = '0.8.0'
s.summary = 'LDAP querying tools for Active Directory, FreeIPA and POSIX-style'
s.description = 'Simple library for binding & group querying on top of various LDAP implementations'
s.homepage = 'https://github.com/theforeman/ldap_fluff'
s.license = 'GPL-2.0-only'
s.files = Dir['lib/**/*.rb'] + Dir['test/**/*.rb'] + ['README.rdoc', 'LICENSE']
s.extra_rdoc_files = ['README.rdoc', 'LICENSE']
s.require_path = 'lib'
s.test_files = Dir['test/**/*.rb']
s.author = ['Jordan O\'Mara', 'Daniel Lobato', 'Petr Chalupa',
'Adam Price', 'Marek Hulan', 'Dominic Cleal']
s.required_ruby_version = '>= 2.7', '< 4'
s.add_dependency('activesupport', '>= 5', '< 8')
s.add_dependency('net-ldap', '>= 0.11', '< 1')
s.add_development_dependency('minitest', '~> 5.0')
s.add_development_dependency('rake', '~> 13.1')
end