Skip to content

Instantly share code, notes, and snippets.

@7even
Created November 13, 2015 14:05
Show Gist options
  • Save 7even/fa92c2f135606011cbd4 to your computer and use it in GitHub Desktop.
Save 7even/fa92c2f135606011cbd4 to your computer and use it in GitHub Desktop.
def generate_password(length: 20)
chars = ('A'..'Z').to_a + ('a'..'z').to_a + ('0'..'9').to_a
length.times.map { chars.sample }.join
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment