From d3e2c2ccb6f3a2e9cccbe988fb492286bc7f9b84 Mon Sep 17 00:00:00 2001 From: Austin Ziegler Date: Mon, 15 Mar 2010 20:37:47 -0400 Subject: [PATCH] Final touches before release. --- History.txt | 5 ++++- Manifest.txt | 2 +- README.markdown => README.txt | 42 ++++++++++++++++------------------- Rakefile | 4 +++- 4 files changed, 27 insertions(+), 26 deletions(-) rename README.markdown => README.txt (62%) diff --git a/History.txt b/History.txt index 7a4d528..8fb761f 100644 --- a/History.txt +++ b/History.txt @@ -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 diff --git a/Manifest.txt b/Manifest.txt index 817e861..38effed 100644 --- a/Manifest.txt +++ b/Manifest.txt @@ -2,7 +2,7 @@ COPYING History.txt LICENSE Manifest.txt -README.markdown +README.txt Rakefile lib/net-ldap.rb lib/net/ber.rb diff --git a/README.markdown b/README.txt similarity index 62% rename from README.markdown rename to README.txt index 6ce5c94..d788cb7 100644 --- a/README.markdown +++ b/README.txt @@ -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 +* Francis Cianfrocca blackhedd@rubyforge.org Contributions since: -* Emiel van de Laar -* Rory O'Connell -* Kaspar Schiess -* Austin Ziegler +* 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/ diff --git a/Rakefile b/Rakefile index 990962e..4f3ffcb 100644 --- a/Rakefile +++ b/Rakefile @@ -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}"