Skip to content

Commit 05689e0

Browse files
committed
. Version bump to 0.1.0, new maintainers and repository location
1 parent de4021f commit 05689e0

File tree

3 files changed

+27
-17
lines changed

3 files changed

+27
-17
lines changed

History.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
=== Net::LDAP 0.1.0 / 2010-03-08
2+
3+
* Ruby 1.9 support. Should now run with rubies starting 1.8.2 upwards.
4+
5+
* New maintainers, new project repository location. Please see the README.txt.
6+
17
=== Net::LDAP 0.0.5 / 2009-03-xx
28

39
* 13 minor enhancements:

README.txt

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1-
= Net::LDAP for Ruby
1+
h1. Net::LDAP for Ruby
22

3+
Issues & Project Homepage
34
* http://rubyforge.org/projects/net-ldap
45

5-
== DESCRIPTION:
6+
Code
7+
* git://github.com/RoryO/ruby-net-ldap.git
8+
9+
h2. DESCRIPTION
610

711
Pure Ruby LDAP library.
812

9-
== FEATURES/PROBLEMS:
13+
h2. FEATURES/PROBLEMS
1014

1115
The Lightweight Directory Access Protocol (LDAP) is an Internet protocol
1216
for accessing distributed directory services.
@@ -17,15 +21,15 @@ most LDAP client features and a subset of server features as well.
1721
* Standards-based (going for RFC 4511)
1822
* Portable: 100% Ruby
1923

20-
== SYNOPSIS:
24+
h2. SYNOPSIS
2125

2226
See Net::LDAP for documentation and usage samples.
2327

24-
== REQUIREMENTS:
28+
h2. REQUIREMENTS
2529

2630
Net::LDAP requires Ruby 1.8.2 or better.
2731

28-
== INSTALL:
32+
h2. INSTALL
2933

3034
Net::LDAP is a pure Ruby library. It does not require any external
3135
libraries.
@@ -39,7 +43,7 @@ If using the packaged (.tgz) version; it can be installed with:
3943

4044
* ruby setup.rb
4145

42-
== CREDITS:
46+
h2. CREDITS
4347

4448
Net::LDAP was originally developed by:
4549

@@ -49,8 +53,10 @@ Contributions since:
4953

5054
* Austin Ziegler <halostatue@gmail.com>
5155
* Emiel van de Laar <gemiel@gmail.com>
56+
* Rory O'Connell <rory.ocon@gmail.com>
57+
* Kaspar Schiess <kaspar.schiess@absurd.li>
5258

53-
== LICENSE:
59+
h2. LICENSE
5460

5561
Copyright (C) 2006 by Francis Cianfrocca
5662

Rakefile

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,16 @@ spec = Gem::Specification.new do |s|
2424
# Change these as appropriate
2525
s.name = "net-ldap"
2626
s.version = "0.1.0"
27-
s.summary = "What this thing does"
28-
s.author = "Francis Cianfrocca"
29-
s.author = 'Emiel van de Laar'
30-
s.author = "Rory O'Connell"
31-
s.author = "Kaspar Schiess"
27+
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."
28+
s.authors = [
29+
"Francis Cianfrocca",
30+
"Austin Ziegler",
31+
"Emiel van de Laar",
32+
"Rory O\'Connell",
33+
"Kaspar Schiess"]
3234

3335
s.description = "Pure Ruby LDAP library"
3436

35-
# s.has_rdoc = true
36-
# s.extra_rdoc_files = %w(README.txt)
37-
# s.rdoc_options = %w(--main README.txt)
38-
3937
# Add any extra files to include in the gem
4038
s.files = %w(COPYING History.txt LICENSE Rakefile README.txt) + Dir.glob("{spec,test,lib/**/*}")
4139
s.require_paths = ["lib"]

0 commit comments

Comments
 (0)