Sha256: 0589996170a3b6a99ac26b5d17f5ce5395c6d8d3407e40c44db2b1af3c133f90
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
# -*- 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 = ['ncaspar@me.com'] 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_runtime_dependency 'net-ldap', '~> 0.3' s.add_runtime_dependency 'casino', '~> 2.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
casino-ldap_authenticator-1.0.0 | casino-ldap_authenticator.gemspec |