forked from rbCAS/casino-ldap_authenticator
-
Notifications
You must be signed in to change notification settings - Fork 4
/
casino-ldap_authenticator.gemspec
27 lines (23 loc) · 1.07 KB
/
casino-ldap_authenticator.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'casino/ldap_authenticator/version'
Gem::Specification.new do |s|
s.name = 'casino-ldap_authenticator'
s.version = CASino::LDAPAuthenticator::VERSION
s.authors = ['Nils Caspar']
s.email = ['[email protected]']
s.homepage = 'http://rbcas.org/'
s.license = 'MIT'
s.summary = 'Provides mechanism to use LDAP as an authenticator for CASino.'
s.description = 'This gem can be used to allow the CASino backend to authenticate against an LDAP server.'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ['lib']
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'rspec', '~> 2.12'
s.add_development_dependency 'simplecov', '~> 0.7'
s.add_development_dependency 'coveralls'
s.add_runtime_dependency 'net-ldap', '~> 0.3'
s.add_runtime_dependency 'casino', '~> 5.0'
end