Posts

Showing posts with the label random

Generate random texts

Hi, I have used this method to generate random texts .... def rendom_password chars = ("a".."z").to_a + ("A".."Z").to_a + ("0".."9").to_a newpass = "" 1.upto(7) { |i| newpass end Thanks, sri