Skip to content

Instantly share code, notes, and snippets.

@mcansky
Created April 22, 2010 16:43
Show Gist options
  • Save mcansky/375469 to your computer and use it in GitHub Desktop.
Save mcansky/375469 to your computer and use it in GitHub Desktop.
def gen_number
chars = 'ABCDEFGHJKLMNOPQRSTUVWXYZ123456789'
code_temp = ''
10.times { |i| code_temp << chars[rand(chars.length)] }
code_found = false
self.number = code_temp
begin
if Cart.find_by_number(number)
self.gen_number
end
rescue
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment