Skip to content

Instantly share code, notes, and snippets.

@selvan
Created November 21, 2014 11:32
Show Gist options
  • Save selvan/332548ea8c1389100bdf to your computer and use it in GitHub Desktop.
Save selvan/332548ea8c1389100bdf to your computer and use it in GitHub Desktop.
Random Alpha Numeric String Generator
module RandomAlphaNumeric
@deck = [(0..9), ('a'..'z'), ('A'..'Z')].map { |i| i.to_a }.flatten
def self.generate(length)
@deck.shuffle[0, length].join
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment