forked from ajrkerr/active_directory
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathactive_directory.gemspec
28 lines (24 loc) · 952 Bytes
/
active_directory.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
26
27
28
require File.expand_path('./lib/active_directory/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'active_directory'
s.license = 'GPL-3.0'
s.version = ActiveDirectory::VERSION
s.date = Date.today.to_s
s.summary = "An interface library for accessing Microsoft's Active Directory."
s.description = <<-DESC
ActiveDirectory uses Net::LDAP to provide a means of accessing
and modifying an Active Directory data store.
This is a fork of the activedirectory gem.
DESC
s.authors = ['Simon Arnaud', 'Adam T Kerr', 'Keith Pitty', 'James Hunt']
s.email = '[email protected]'
s.homepage = 'http://github.com/mazwak/active_directory'
s.files = Dir['lib/**/*', 'README*', 'LICENSE*', 'VERSION*']
s.extra_rdoc_files = [
'README.md'
]
s.required_ruby_version = '~> 2'
s.add_dependency 'net-ldap', '~> 0'
s.add_dependency 'bindata', '~> 2'
s.add_development_dependency 'minitest', '~> 5'
end