. Version bump to 0.1.0, new maintainers and repository location
This commit is contained in:
parent
de4021f2e1
commit
05689e060d
|
@ -1,3 +1,9 @@
|
||||||
|
=== Net::LDAP 0.1.0 / 2010-03-08
|
||||||
|
|
||||||
|
* Ruby 1.9 support. Should now run with rubies starting 1.8.2 upwards.
|
||||||
|
|
||||||
|
* New maintainers, new project repository location. Please see the README.txt.
|
||||||
|
|
||||||
=== Net::LDAP 0.0.5 / 2009-03-xx
|
=== Net::LDAP 0.0.5 / 2009-03-xx
|
||||||
|
|
||||||
* 13 minor enhancements:
|
* 13 minor enhancements:
|
||||||
|
|
22
README.txt
22
README.txt
|
@ -1,12 +1,16 @@
|
||||||
= Net::LDAP for Ruby
|
h1. Net::LDAP for Ruby
|
||||||
|
|
||||||
|
Issues & Project Homepage
|
||||||
* http://rubyforge.org/projects/net-ldap
|
* http://rubyforge.org/projects/net-ldap
|
||||||
|
|
||||||
== DESCRIPTION:
|
Code
|
||||||
|
* git://github.com/RoryO/ruby-net-ldap.git
|
||||||
|
|
||||||
|
h2. DESCRIPTION
|
||||||
|
|
||||||
Pure Ruby LDAP library.
|
Pure Ruby LDAP library.
|
||||||
|
|
||||||
== FEATURES/PROBLEMS:
|
h2. FEATURES/PROBLEMS
|
||||||
|
|
||||||
The Lightweight Directory Access Protocol (LDAP) is an Internet protocol
|
The Lightweight Directory Access Protocol (LDAP) is an Internet protocol
|
||||||
for accessing distributed directory services.
|
for accessing distributed directory services.
|
||||||
|
@ -17,15 +21,15 @@ most LDAP client features and a subset of server features as well.
|
||||||
* Standards-based (going for RFC 4511)
|
* Standards-based (going for RFC 4511)
|
||||||
* Portable: 100% Ruby
|
* Portable: 100% Ruby
|
||||||
|
|
||||||
== SYNOPSIS:
|
h2. SYNOPSIS
|
||||||
|
|
||||||
See Net::LDAP for documentation and usage samples.
|
See Net::LDAP for documentation and usage samples.
|
||||||
|
|
||||||
== REQUIREMENTS:
|
h2. REQUIREMENTS
|
||||||
|
|
||||||
Net::LDAP requires Ruby 1.8.2 or better.
|
Net::LDAP requires Ruby 1.8.2 or better.
|
||||||
|
|
||||||
== INSTALL:
|
h2. INSTALL
|
||||||
|
|
||||||
Net::LDAP is a pure Ruby library. It does not require any external
|
Net::LDAP is a pure Ruby library. It does not require any external
|
||||||
libraries.
|
libraries.
|
||||||
|
@ -39,7 +43,7 @@ If using the packaged (.tgz) version; it can be installed with:
|
||||||
|
|
||||||
* ruby setup.rb
|
* ruby setup.rb
|
||||||
|
|
||||||
== CREDITS:
|
h2. CREDITS
|
||||||
|
|
||||||
Net::LDAP was originally developed by:
|
Net::LDAP was originally developed by:
|
||||||
|
|
||||||
|
@ -49,8 +53,10 @@ Contributions since:
|
||||||
|
|
||||||
* Austin Ziegler <halostatue@gmail.com>
|
* Austin Ziegler <halostatue@gmail.com>
|
||||||
* Emiel van de Laar <gemiel@gmail.com>
|
* Emiel van de Laar <gemiel@gmail.com>
|
||||||
|
* Rory O'Connell <rory.ocon@gmail.com>
|
||||||
|
* Kaspar Schiess <kaspar.schiess@absurd.li>
|
||||||
|
|
||||||
== LICENSE:
|
h2. LICENSE
|
||||||
|
|
||||||
Copyright (C) 2006 by Francis Cianfrocca
|
Copyright (C) 2006 by Francis Cianfrocca
|
||||||
|
|
||||||
|
|
16
Rakefile
16
Rakefile
|
@ -24,18 +24,16 @@ spec = Gem::Specification.new do |s|
|
||||||
# Change these as appropriate
|
# Change these as appropriate
|
||||||
s.name = "net-ldap"
|
s.name = "net-ldap"
|
||||||
s.version = "0.1.0"
|
s.version = "0.1.0"
|
||||||
s.summary = "What this thing does"
|
s.summary = "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."
|
||||||
s.author = "Francis Cianfrocca"
|
s.authors = [
|
||||||
s.author = 'Emiel van de Laar'
|
"Francis Cianfrocca",
|
||||||
s.author = "Rory O'Connell"
|
"Austin Ziegler",
|
||||||
s.author = "Kaspar Schiess"
|
"Emiel van de Laar",
|
||||||
|
"Rory O\'Connell",
|
||||||
|
"Kaspar Schiess"]
|
||||||
|
|
||||||
s.description = "Pure Ruby LDAP library"
|
s.description = "Pure Ruby LDAP library"
|
||||||
|
|
||||||
# s.has_rdoc = true
|
|
||||||
# s.extra_rdoc_files = %w(README.txt)
|
|
||||||
# s.rdoc_options = %w(--main README.txt)
|
|
||||||
|
|
||||||
# Add any extra files to include in the gem
|
# Add any extra files to include in the gem
|
||||||
s.files = %w(COPYING History.txt LICENSE Rakefile README.txt) + Dir.glob("{spec,test,lib/**/*}")
|
s.files = %w(COPYING History.txt LICENSE Rakefile README.txt) + Dir.glob("{spec,test,lib/**/*}")
|
||||||
s.require_paths = ["lib"]
|
s.require_paths = ["lib"]
|
||||||
|
|
Loading…
Reference in a new issue