Skip to content

Instantly share code, notes, and snippets.

@iwan
Created May 23, 2018 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iwan/816f78e4d990d18695868f9b9e1d0baa to your computer and use it in GitHub Desktop.
Save iwan/816f78e4d990d18695868f9b9e1d0baa to your computer and use it in GitHub Desktop.
Random string generator
def random_string(length=16)
source = ("a".."z").to_a + ("A".."Z").to_a + (0..9).to_a
Array.new(length){|e| source[rand(source.size)]}.join
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment