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