module FFaker::NameUA
def name
def name case rand(8) when 0 then first_name_male when 1 then first_name_female when 2 then "#{first_name_male} #{middle_name_male}" when 3 then "#{first_name_female} #{middle_name_male}" when 4 then "#{last_name_male} #{first_name_male}" when 5 then "#{last_name_female} #{first_name_female}" when 6 then "#{last_name_male} #{first_name_male} #{middle_name_male}" when 7 then "#{last_name_female} #{first_name_female} #{middle_name_female}" end end