module Faker::SSN

def ssn


http://en.wikipedia.org/wiki/Social_Security_number

"AAA-GG-SSSS". More info here:
The Social Security number is a nine-digit number in the format
def ssn
  Faker.numerify('###-##-####')
end