Final touches before release.
This commit is contained in:
parent
0f13153558
commit
d3e2c2ccb6
|
@ -1,5 +1,8 @@
|
||||||
=== Net::LDAP 0.1.0 / 2010-03-08
|
=== 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.
|
* 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
|
||||||
|
|
|
@ -2,7 +2,7 @@ COPYING
|
||||||
History.txt
|
History.txt
|
||||||
LICENSE
|
LICENSE
|
||||||
Manifest.txt
|
Manifest.txt
|
||||||
README.markdown
|
README.txt
|
||||||
Rakefile
|
Rakefile
|
||||||
lib/net-ldap.rb
|
lib/net-ldap.rb
|
||||||
lib/net/ber.rb
|
lib/net/ber.rb
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
# Net::LDAP for Ruby
|
= Net::LDAP for Ruby
|
||||||
|
|
||||||
## Description
|
== Description
|
||||||
|
|
||||||
Pure Ruby LDAP library.
|
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
|
The Lightweight Directory Access Protocol (LDAP) is an Internet protocol for
|
||||||
accessing distributed directory services.
|
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)
|
* Standards-based (going for RFC 4511)
|
||||||
* Portable: 100% Ruby
|
* Portable: 100% Ruby
|
||||||
|
|
||||||
## SYNOPSIS
|
== SYNOPSIS
|
||||||
|
|
||||||
See Net::LDAP for documentation and usage samples.
|
See Net::LDAP for documentation and usage samples.
|
||||||
|
|
||||||
## REQUIREMENTS
|
== REQUIREMENTS
|
||||||
|
|
||||||
Net::LDAP requires Ruby 1.8.7-compliant interpreter or better.
|
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.
|
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
|
You can install the RubyGems version of Net::LDAP available from the usual
|
||||||
|
@ -41,23 +41,22 @@ sources.
|
||||||
|
|
||||||
* gem install net-ldap
|
* gem install net-ldap
|
||||||
|
|
||||||
There is no installation required if using a source release. Simply
|
Simply require 'net/ldap'.
|
||||||
unarchive and require 'lib/net'.
|
|
||||||
|
|
||||||
## CREDITS
|
== CREDITS
|
||||||
|
|
||||||
Net::LDAP was originally developed by:
|
Net::LDAP was originally developed by:
|
||||||
|
|
||||||
* Francis Cianfrocca <blackhedd@rubyforge.org>
|
* Francis Cianfrocca blackhedd@rubyforge.org
|
||||||
|
|
||||||
Contributions since:
|
Contributions since:
|
||||||
|
|
||||||
* Emiel van de Laar <emiel@rubyforge.org>
|
* Emiel van de Laar emiel@rubyforge.org
|
||||||
* Rory O'Connell <rory.ocon@gmail.com>
|
* Rory O'Connell rory.ocon@gmail.com
|
||||||
* Kaspar Schiess <eule@rubyforge.org>
|
* Kaspar Schiess eule@rubyforge.org
|
||||||
* Austin Ziegler <austin@rubyforge.org>
|
* Austin Ziegler austin@rubyforge.org
|
||||||
|
|
||||||
## LICENSE
|
== LICENSE
|
||||||
|
|
||||||
Copyright (C) 2006 - 2010 by Francis Cianfrocca and other contributors.
|
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
|
Available under the same terms as Ruby. See LICENSE in the main distribution
|
||||||
for full licensing information.
|
for full licensing information.
|
||||||
|
|
||||||
[1]:http://rubyforge.org/projects/net-ldap/
|
|
||||||
[2]:http://github.com/RoryO/ruby-net-ldap/
|
|
4
Rakefile
4
Rakefile
|
@ -16,8 +16,9 @@ PKG_TAR = "pkg/#{PKG_DIST}.tar.gz"
|
||||||
MANIFEST = File.read("Manifest.txt").split
|
MANIFEST = File.read("Manifest.txt").split
|
||||||
MINRUBY = "1.8.7"
|
MINRUBY = "1.8.7"
|
||||||
|
|
||||||
|
Hoe.plugin :git
|
||||||
|
|
||||||
Hoe.spec PKG_NAME do
|
Hoe.spec PKG_NAME do
|
||||||
self.readme_file = "README.markdown"
|
|
||||||
self.version = PKG_VERSION
|
self.version = PKG_VERSION
|
||||||
self.rubyforge_name = PKG_NAME
|
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 << [ "archive-tar-minitar", "~>0.5.1" ]
|
||||||
extra_dev_deps << [ "hanna", "~>0.1.2" ]
|
extra_dev_deps << [ "hanna", "~>0.1.2" ]
|
||||||
|
extra_dev_deps << [ "hoe-git", "~>1" ]
|
||||||
clean_globs << "coverage"
|
clean_globs << "coverage"
|
||||||
|
|
||||||
spec_extras[:required_ruby_version] = ">= #{MINRUBY}"
|
spec_extras[:required_ruby_version] = ">= #{MINRUBY}"
|
||||||
|
|
Loading…
Reference in a new issue