module Faker::NameSE

Constants

PREFIXES

Public Instance Methods

first_name() click to toggle source
# File lib/ffakerer/name_se.rb, line 19
def first_name
  case rand(12)
  when 0..4  then first_name_female
  when 5..9  then first_name_male
  when 10    then "#{first_name_male} #{first_name_male}"
  when 11    then "#{first_name_female} #{first_name_female}"
  else            first_name_female
  end
end
first_name_female() click to toggle source
# File lib/ffakerer/name_se.rb, line 29
def first_name_female
  FIRST_NAMES_FEMALE.rand
end
first_name_male() click to toggle source
# File lib/ffakerer/name_se.rb, line 33
def first_name_male
  FIRST_NAMES_MALE.rand
end
last_name() click to toggle source
# File lib/ffakerer/name_se.rb, line 37
def last_name
  LAST_NAMES.rand
end
name() click to toggle source
# File lib/ffakerer/name_se.rb, line 12
def name
  case rand(30)
  when 0 then "#{prefix} #{first_name} #{last_name}"
  else        "#{first_name} #{last_name}"
  end
end
prefix() click to toggle source
# File lib/ffakerer/name_se.rb, line 41
def prefix
  PREFIXES.rand
end