Switching to version 0.1.0.
This commit is contained in:
parent
5c319e1b58
commit
0f13153558
|
@ -3,9 +3,8 @@ History.txt
|
|||
LICENSE
|
||||
Manifest.txt
|
||||
README.markdown
|
||||
README.textile
|
||||
Rakefile
|
||||
lib/net.rb
|
||||
lib/net-ldap.rb
|
||||
lib/net/ber.rb
|
||||
lib/net/ber/ber_parser.rb
|
||||
lib/net/ldap.rb
|
||||
|
|
|
@ -48,18 +48,18 @@ unarchive and require 'lib/net'.
|
|||
|
||||
Net::LDAP was originally developed by:
|
||||
|
||||
* Francis Cianfrocca <garbagecat10@gmail.com>
|
||||
* Francis Cianfrocca <blackhedd@rubyforge.org>
|
||||
|
||||
Contributions since:
|
||||
|
||||
* Emiel van de Laar <gemiel@gmail.com>
|
||||
* Emiel van de Laar <emiel@rubyforge.org>
|
||||
* Rory O'Connell <rory.ocon@gmail.com>
|
||||
* Kaspar Schiess <kaspar.schiess@absurd.li>
|
||||
* Austin Ziegler <austin@rubyforge.com>
|
||||
* Kaspar Schiess <eule@rubyforge.org>
|
||||
* Austin Ziegler <austin@rubyforge.org>
|
||||
|
||||
## LICENSE
|
||||
|
||||
Copyright (C) 2006 by Francis Cianfrocca
|
||||
Copyright (C) 2006 - 2010 by Francis Cianfrocca and other contributors.
|
||||
|
||||
Please read the file LICENSE for licensing restrictions on this library. In
|
||||
the simplest terms, this library is available under the same terms as Ruby
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
|
||||
module Net
|
||||
module BER
|
||||
VERSION = '0.1.0'
|
||||
|
||||
#--
|
||||
# This condenses our nicely self-documenting ASN hashes down
|
||||
|
@ -91,4 +92,4 @@ module Net
|
|||
end
|
||||
end
|
||||
|
||||
require 'net/ber/ber_parser'
|
||||
require 'net/ber/ber_parser'
|
||||
|
|
|
@ -3,6 +3,8 @@ require 'stringio'
|
|||
module Net
|
||||
module BER
|
||||
module BERParser
|
||||
VERSION = '0.1.0'
|
||||
|
||||
# The order of these follows the class-codes in BER.
|
||||
# Maybe this should have been a hash.
|
||||
TagClasses = [:universal, :application, :context_specific, :private]
|
||||
|
@ -108,4 +110,3 @@ module Net
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -234,7 +234,7 @@ module Net
|
|||
class LDAP
|
||||
class LdapError < StandardError; end
|
||||
|
||||
VERSION = "0.5.0"
|
||||
VERSION = "0.1.0"
|
||||
|
||||
SearchScope_BaseObject = 0
|
||||
SearchScope_SingleLevel = 1
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
# $Id$
|
||||
#
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
#
|
||||
# Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.
|
||||
|
@ -22,11 +19,6 @@
|
|||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
#---------------------------------------------------------------------------
|
||||
#
|
||||
#
|
||||
|
||||
|
||||
|
||||
|
||||
module Net
|
||||
class LDAP
|
||||
|
@ -104,4 +96,4 @@ module Net
|
|||
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
# $Id$
|
||||
#
|
||||
# LDAP Entry (search-result) support classes
|
||||
#
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
#
|
||||
# Copyright (C) 2006 by Francis Cianfrocca. All Rights Reserved.
|
||||
|
@ -261,5 +258,3 @@ class LDAP
|
|||
|
||||
end # class LDAP
|
||||
end # module Net
|
||||
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
module Net
|
||||
|
||||
class SNMP
|
||||
VERSION = '0.1.0'
|
||||
|
||||
AsnSyntax = Net::BER.compile_syntax({
|
||||
:application => {
|
||||
|
|
Loading…
Reference in a new issue