No release in over 3 years
Low commit activity in last 3 years
Add the GSS-SPNEGO authentication mechanism in net-ldap gem
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.79.0

Runtime

~> 0.16
~> 0.6
 Project Readme

ruby-net-ldap-gss-spnego

Adapter for GSS-SPNEGO authentication in net-ldap gem

Installation

Add this line to your application's Gemfile:

gem 'net-ldap-gss-spnego'

And then execute:

$ bundle

Or install it yourself as:

$ gem install net-ldap-gss-spnego

Usage

require 'net/ldap/auth_adapter/gss_spnego'

ldap = Net::LDAP.new(
  auth: {
    method: :gss_spnego,
    username: 'administrator',
    password: 'Pa$$w0rd'
  }
)