Skip to content

Instantly share code, notes, and snippets.

@cbguder
Created May 7, 2009 14:44
Show Gist options
  • Save cbguder/108131 to your computer and use it in GitHub Desktop.
Save cbguder/108131 to your computer and use it in GitHub Desktop.
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