class MEE::RFC5424::OctetFraming

Public Instance Methods

frame( input ) click to toggle source
# File lib/mee/rfc5424.rb, line 38
def frame( input )
        length = input.bytesize
        "" + length.to_s + " " + input
end