From 05689e060dc266531c842db117873b6f6eac3310 Mon Sep 17 00:00:00 2001 From: Kaspar Schiess Date: Mon, 8 Mar 2010 09:48:39 +0100 Subject: [PATCH] . Version bump to 0.1.0, new maintainers and repository location --- History.txt | 6 ++++++ README.txt | 22 ++++++++++++++-------- Rakefile | 16 +++++++--------- 3 files changed, 27 insertions(+), 17 deletions(-) diff --git a/History.txt b/History.txt index 5c3285e..3e099e5 100644 --- a/History.txt +++ b/History.txt @@ -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 * 13 minor enhancements: diff --git a/README.txt b/README.txt index 45b6b6a..b4beb49 100644 --- a/README.txt +++ b/README.txt @@ -1,12 +1,16 @@ -= Net::LDAP for Ruby +h1. Net::LDAP for Ruby +Issues & Project Homepage * http://rubyforge.org/projects/net-ldap -== DESCRIPTION: +Code +* git://github.com/RoryO/ruby-net-ldap.git + +h2. DESCRIPTION Pure Ruby LDAP library. -== FEATURES/PROBLEMS: +h2. FEATURES/PROBLEMS The Lightweight Directory Access Protocol (LDAP) is an Internet protocol 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) * Portable: 100% Ruby -== SYNOPSIS: +h2. SYNOPSIS See Net::LDAP for documentation and usage samples. -== REQUIREMENTS: +h2. REQUIREMENTS 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 libraries. @@ -39,7 +43,7 @@ If using the packaged (.tgz) version; it can be installed with: * ruby setup.rb -== CREDITS: +h2. CREDITS Net::LDAP was originally developed by: @@ -49,8 +53,10 @@ Contributions since: * Austin Ziegler * Emiel van de Laar +* Rory O'Connell +* Kaspar Schiess -== LICENSE: +h2. LICENSE Copyright (C) 2006 by Francis Cianfrocca diff --git a/Rakefile b/Rakefile index f73ef87..9cdc616 100644 --- a/Rakefile +++ b/Rakefile @@ -24,18 +24,16 @@ spec = Gem::Specification.new do |s| # Change these as appropriate s.name = "net-ldap" s.version = "0.1.0" - s.summary = "What this thing does" - s.author = "Francis Cianfrocca" - s.author = 'Emiel van de Laar' - s.author = "Rory O'Connell" - s.author = "Kaspar Schiess" + 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.authors = [ + "Francis Cianfrocca", + "Austin Ziegler", + "Emiel van de Laar", + "Rory O\'Connell", + "Kaspar Schiess"] 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 s.files = %w(COPYING History.txt LICENSE Rakefile README.txt) + Dir.glob("{spec,test,lib/**/*}") s.require_paths = ["lib"]