Sha256: 98a7e37207e2b136643e05a4480845313c65c40fb5df386fd1cb5f96eee60ca5

Contents?: true

Size: 1.08 KB

Versions: 3

Compression:

Stored size: 1.08 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_development_dependency 'coveralls'

  s.add_runtime_dependency 'net-ldap', '~> 0.3'
  s.add_runtime_dependency 'casino', '>= 3.0.0', '< 5.0.0'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
casino-ldap_authenticator-3.0.0 casino-ldap_authenticator.gemspec
casino-ldap_authenticator-3.0.0.pre.1 casino-ldap_authenticator.gemspec
casino-ldap_authenticator-3.0.0.pre1 casino-ldap_authenticator.gemspec