Skip to content

Instantly share code, notes, and snippets.

@mattsnyder
Created August 23, 2012 20:23
Show Gist options
  • Select an option

  • Save mattsnyder/3441218 to your computer and use it in GitHub Desktop.

Select an option

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