forked from omniauth/omniauth-ldap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
omniauth-ldap.gemspec
26 lines (23 loc) · 1.12 KB
/
omniauth-ldap.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/omniauth-ldap/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Ping Yu", "Tom Milewski"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = %q{A LDAP strategy for OmniAuth.}
gem.summary = %q{A LDAP strategy for OmniAuth.}
gem.homepage = "https://github.com/intridea/omniauth-ldap"
gem.license = "MIT"
gem.add_runtime_dependency 'omniauth', '~> 1.8.1'
gem.add_runtime_dependency 'net-ldap', '~> 0.16'
gem.add_runtime_dependency 'pyu-ruby-sasl', '~> 0.0.3.3'
gem.add_runtime_dependency 'rubyntlm', '~> 0.6.2'
gem.add_development_dependency 'rspec', '~> 3.0'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'rack-test'
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "omniauth-ldap"
gem.require_paths = ["lib"]
gem.version = OmniAuth::LDAP::VERSION
end