Skip to content

Instantly share code, notes, and snippets.

@mattsnyder
Created August 23, 2012 20:23
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 mattsnyder/3441218 to your computer and use it in GitHub Desktop.
Save mattsnyder/3441218 to your computer and use it in GitHub Desktop.
Phone Number Generator
def phone_number
o = [(0..9)].map{|i| i.to_a}.flatten;
(0..9).map{ o[rand(o.length)] }.join
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment