Created
June 1, 2009 16:11
-
-
Save jaehess/121571 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 generate_code(len = 5) | |
| (1..len).map { (("a".."z").to_a + ("A".."Z").to_a + (0..9).to_a)[rand(62)] }.join | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment