Created
May 7, 2009 14:44
-
-
Save cbguder/108131 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def random_password(len) | |
chars = ("a".."z").to_a + ("0".."9").to_a | |
result = "" | |
1.upto(len) { |i| result << chars[rand(chars.size-1)] } | |
return result | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment