Switching to version 0.1.0.
This commit is contained in:
parent
5c319e1b58
commit
0f13153558
8 changed files with 13 additions and 24 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue