Skip to content

Instantly share code, notes, and snippets.

@damncabbage
Created August 23, 2013 01:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save damncabbage/6314688 to your computer and use it in GitHub Desktop.
Save damncabbage/6314688 to your computer and use it in GitHub Desktop.
Generate a random string of 0-9, a-z characters in Ruby.
require 'securerandom'
length = 10
SecureRandom.random_number(36 ** length).to_s(36) # Base 36, ie. 0..9 + a..z
# => "9datwwkqlo"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment