-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from roymarantz/use-net-ldap
add support ldap statrttls
- Loading branch information
Showing
4 changed files
with
94 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
#!/usr/bin/env ruby | ||
# -*- coding: utf-8 -*- | ||
# Author : Romain GEORGES | ||
#!/usr/bin/env ruby | ||
# -*- coding: utf-8 -*- | ||
# Author : Romain GEORGES | ||
|
||
# the Rack module from Rack Sources | ||
# the Rack module from Rack Sources | ||
module Rack | ||
|
||
# the Rack::Auth module from Rack Sources | ||
# the Rack::Auth module from Rack Sources | ||
module Auth | ||
# the current version for Rack::Auth::Ldap => gem rack-auth-ldap | ||
# used by gemspec | ||
LDAP_VERSION = "1.0" | ||
LDAP_VERSION = "1.1" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ require 'rack/auth/ldap/version' | |
Gem::Specification.new do |s| | ||
s.name = "rack-auth-ldap" | ||
s.summary = %Q{Rack middleware providing LDAP authentication} | ||
s.email = "[email protected]" | ||
s.email = "[email protected]" | ||
s.homepage = "http://www.github.com/lecid/rack-auth-ldap" | ||
s.authors = ["Romain GEORGES"] | ||
s.version = Rack::Auth::LDAP_VERSION | ||
|
@@ -20,12 +20,9 @@ Gem::Specification.new do |s| | |
s.add_development_dependency('roodi') | ||
s.add_development_dependency('code_statistics') | ||
s.add_development_dependency('yard-rspec') | ||
s.add_dependency('ruby-ldap') | ||
s.add_dependency('net-ldap') | ||
s.add_dependency('rack') | ||
s.required_ruby_version = '>= 1.9.0' | ||
s.license = "BSD" | ||
s.license = "BSD" | ||
s.files = `git ls-files`.split($/) | ||
end | ||
|
||
|
||
|