= private = protected
random_string(len)
Generates a random string of length len
# File lib/webrick/utils.rb, line 94 def random_string(len) rand_max = RAND_CHARS.bytesize ret = "" len.times{ ret << RAND_CHARS[rand(rand_max)] } ret end