Final touches before release.

master
Austin Ziegler 2010-03-15 20:37:47 -04:00
parent 0f13153558
commit d3e2c2ccb6
4 changed files with 27 additions and 26 deletions

View File

@ -1,5 +1,8 @@
=== Net::LDAP 0.1.0 / 2010-03-08
* Ruby 1.9 support. Should now run with rubies starting 1.8.2 upwards.
* Small fixes throughout, more to come.
* Ruby 1.9 support added.
* Ruby 1.8.6 and below support removed. If we can figure out a compatible way
to reintroduce this, we will.
* New maintainers, new project repository location. Please see the README.txt.
=== Net::LDAP 0.0.5 / 2009-03-xx

View File

@ -2,7 +2,7 @@ COPYING
History.txt
LICENSE
Manifest.txt
README.markdown
README.txt
Rakefile
lib/net-ldap.rb
lib/net/ber.rb

View File

@ -1,20 +1,20 @@
# Net::LDAP for Ruby
= Net::LDAP for Ruby
## Description
== Description
Pure Ruby LDAP library.
## Where
== Where
### Issues & Project Homepage
=== Issues & Project Homepage
[http://rubyforge.org/projects/net-ldap][1]
http://rubyforge.org/projects/net-ldap
### Code
=== Code
[http://github.com/RoryO/ruby-net-ldap/][2]
http://github.com/RoryO/ruby-net-ldap/
## FEATURES/PROBLEMS
== FEATURES/PROBLEMS
The Lightweight Directory Access Protocol (LDAP) is an Internet protocol for
accessing distributed directory services.
@ -25,15 +25,15 @@ LDAP client features and a subset of server features as well.
* Standards-based (going for RFC 4511)
* Portable: 100% Ruby
## SYNOPSIS
== SYNOPSIS
See Net::LDAP for documentation and usage samples.
## REQUIREMENTS
== REQUIREMENTS
Net::LDAP requires Ruby 1.8.7-compliant interpreter or better.
## INSTALL
== INSTALL
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
@ -41,23 +41,22 @@ sources.
* gem install net-ldap
There is no installation required if using a source release. Simply
unarchive and require 'lib/net'.
Simply require 'net/ldap'.
## CREDITS
== CREDITS
Net::LDAP was originally developed by:
* Francis Cianfrocca <blackhedd@rubyforge.org>
* Francis Cianfrocca blackhedd@rubyforge.org
Contributions since:
* Emiel van de Laar <emiel@rubyforge.org>
* Rory O'Connell <rory.ocon@gmail.com>
* Kaspar Schiess <eule@rubyforge.org>
* Austin Ziegler <austin@rubyforge.org>
* Emiel van de Laar emiel@rubyforge.org
* Rory O'Connell rory.ocon@gmail.com
* Kaspar Schiess eule@rubyforge.org
* Austin Ziegler austin@rubyforge.org
## LICENSE
== LICENSE
Copyright (C) 2006 - 2010 by Francis Cianfrocca and other contributors.
@ -67,6 +66,3 @@ itself.
Available under the same terms as Ruby. See LICENSE in the main distribution
for full licensing information.
[1]:http://rubyforge.org/projects/net-ldap/
[2]:http://github.com/RoryO/ruby-net-ldap/

View File

@ -16,8 +16,9 @@ PKG_TAR = "pkg/#{PKG_DIST}.tar.gz"
MANIFEST = File.read("Manifest.txt").split
MINRUBY = "1.8.7"
Hoe.plugin :git
Hoe.spec PKG_NAME do
self.readme_file = "README.markdown"
self.version = PKG_VERSION
self.rubyforge_name = PKG_NAME
@ -35,6 +36,7 @@ Hoe.spec PKG_NAME do
extra_dev_deps << [ "archive-tar-minitar", "~>0.5.1" ]
extra_dev_deps << [ "hanna", "~>0.1.2" ]
extra_dev_deps << [ "hoe-git", "~>1" ]
clean_globs << "coverage"
spec_extras[:required_ruby_version] = ">= #{MINRUBY}"