2010-03-11 03:34:46 +01:00
|
|
|
# Net::LDAP for Ruby
|
2008-11-15 00:22:30 +01:00
|
|
|
|
2010-03-11 03:41:14 +01:00
|
|
|
## Description
|
2010-03-08 09:56:10 +01:00
|
|
|
|
2010-03-11 03:34:46 +01:00
|
|
|
Pure Ruby LDAP library.
|
2008-11-15 00:22:30 +01:00
|
|
|
|
2010-03-11 03:34:46 +01:00
|
|
|
## Where
|
2010-03-08 09:56:10 +01:00
|
|
|
|
2010-03-11 03:34:46 +01:00
|
|
|
### Issues & Project Homepage
|
2010-03-08 09:48:39 +01:00
|
|
|
|
2010-03-11 03:41:14 +01:00
|
|
|
[http://rubyforge.org/projects/net-ldap][1]
|
2008-11-15 00:22:30 +01:00
|
|
|
|
2010-03-11 03:34:46 +01:00
|
|
|
### Code
|
|
|
|
|
2010-03-11 03:41:14 +01:00
|
|
|
[http://github.com/RoryO/ruby-net-ldap/][2]
|
2008-11-15 00:22:30 +01:00
|
|
|
|
2010-03-11 03:34:46 +01:00
|
|
|
## FEATURES/PROBLEMS
|
2008-11-15 00:22:30 +01:00
|
|
|
|
2010-03-08 09:57:32 +01:00
|
|
|
The Lightweight Directory Access Protocol (LDAP) is an Internet protocol for
|
|
|
|
accessing distributed directory services.
|
2008-11-15 00:22:30 +01:00
|
|
|
|
2010-03-08 09:57:32 +01:00
|
|
|
Net::LDAP is an LDAP support library written in pure Ruby. It supports most
|
|
|
|
LDAP client features and a subset of server features as well.
|
2008-11-15 00:22:30 +01:00
|
|
|
|
|
|
|
* Standards-based (going for RFC 4511)
|
|
|
|
* Portable: 100% Ruby
|
|
|
|
|
2010-03-11 03:34:46 +01:00
|
|
|
## SYNOPSIS
|
2008-11-15 00:22:30 +01:00
|
|
|
|
|
|
|
See Net::LDAP for documentation and usage samples.
|
|
|
|
|
2010-03-11 03:34:46 +01:00
|
|
|
## REQUIREMENTS
|
2008-11-15 00:22:30 +01:00
|
|
|
|
2010-03-08 15:59:07 +01:00
|
|
|
Net::LDAP requires Ruby 1.8.7-compliant interpreter or better.
|
2008-11-15 00:22:30 +01:00
|
|
|
|
2010-03-11 03:34:46 +01:00
|
|
|
## INSTALL
|
2008-11-15 00:22:30 +01:00
|
|
|
|
2010-03-08 09:57:32 +01:00
|
|
|
Net::LDAP is a pure Ruby library. It does not require any external libraries.
|
|
|
|
You can install the RubyGems version of Net::LDAP available from the usual
|
|
|
|
sources.
|
2008-11-15 00:22:30 +01:00
|
|
|
|
|
|
|
* gem install net-ldap
|
|
|
|
|
2010-03-08 15:59:07 +01:00
|
|
|
There is no installation required if using a source release. Simply
|
|
|
|
unarchive and require 'lib/net'.
|
2008-11-15 00:22:30 +01:00
|
|
|
|
2010-03-11 03:34:46 +01:00
|
|
|
## CREDITS
|
2008-11-15 00:22:30 +01:00
|
|
|
|
|
|
|
Net::LDAP was originally developed by:
|
|
|
|
|
|
|
|
* Francis Cianfrocca <garbagecat10@gmail.com>
|
|
|
|
|
|
|
|
Contributions since:
|
|
|
|
|
|
|
|
* Emiel van de Laar <gemiel@gmail.com>
|
2010-03-08 09:48:39 +01:00
|
|
|
* Rory O'Connell <rory.ocon@gmail.com>
|
|
|
|
* Kaspar Schiess <kaspar.schiess@absurd.li>
|
2010-03-11 03:34:46 +01:00
|
|
|
* Austin Ziegler <austin@rubyforge.com>
|
2008-11-15 00:22:30 +01:00
|
|
|
|
2010-03-11 03:34:46 +01:00
|
|
|
## LICENSE
|
2008-11-15 00:22:30 +01:00
|
|
|
|
|
|
|
Copyright (C) 2006 by Francis Cianfrocca
|
|
|
|
|
|
|
|
Please read the file LICENSE for licensing restrictions on this library. In
|
|
|
|
the simplest terms, this library is available under the same terms as Ruby
|
|
|
|
itself.
|
|
|
|
|
2010-03-08 09:57:32 +01:00
|
|
|
Available under the same terms as Ruby. See LICENSE in the main distribution
|
|
|
|
for full licensing information.
|
2010-03-11 03:41:14 +01:00
|
|
|
|
|
|
|
[1]:http://rubyforge.org/projects/net-ldap/
|
|
|
|
[2]:http://github.com/RoryO/ruby-net-ldap/
|