There's no documentation for this item.
# File webrick/utils.rb, line 91 def random_string(len) rand_max = RAND_CHARS.size ret = "" len.times{ ret << RAND_CHARS[rand(rand_max)] } ret end
<code/>
<pre/>
<code/>and<pre/>for code samples.