-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathldap_disambiguate.gemspec
33 lines (28 loc) · 1.21 KB
/
ldap_disambiguate.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
29
30
31
32
33
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ldap_disambiguate/version'
Gem::Specification.new do |s|
s.name = 'ldap_disambiguate'
s.version = LdapDisambiguate::VERSION
s.date = '2016-03-14'
s.summary = 'Use ldap to diambiguate a text name'
s.description = 'Queries the PSU ldap to see if it can find a user that matches the text to get the prefered name and email'
s.authors = ['Carolyn Cole']
s.email = '[email protected]'
s.homepage =
'https://github.com/psu-stewardship/ldap_disambiguate'
s.license = 'APACHE2'
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
s.bindir = 'exe'
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.require_paths = ['lib']
s.add_dependency 'hydra-ldap'
s.add_dependency 'mail', '~> 2.6'
s.add_dependency 'namae', '0.9.3'
s.add_dependency 'net-ldap', '~> 0.16.0'
s.add_development_dependency 'bundler', '~> 1.11'
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'rspec-its'
end