Moved core extensions to Net::BER. Documented.

This commit is contained in:
Austin Ziegler 2010-03-20 00:18:10 -04:00 committed by Kaspar Schiess
parent e31af4bead
commit c913bc6fb9
17 changed files with 310 additions and 248 deletions

View file

@ -67,6 +67,10 @@ end
module Net
module BER
# Used for BER-encoding the length and content bytes of a Fixnum integer
# values.
MAX_FIXNUM_SIZE = 0.size
class BerError < StandardError; end
class BerIdentifiedString < String
@ -92,4 +96,4 @@ module Net
end
end
require 'net/ber/ber_parser'
require 'net/ber/core_ext'