I would like to build a string from a byte value.
I currently use:
str = \" \" str[0] = byte
This seems to work fine but I find it
If bytes is an array of Fixnum's you could try this:
bytes.map {|num| num.chr}.join
or this:
s = '' bytes.each {|i| s << i}