Sha256: f71f38619fb49b738ab463e044bf55fcc726dd63f4de7ca368da2c0adb6d1a10
Contents?: true
Size: 1.43 KB
Versions: 5
Compression:
Stored size: 1.43 KB
Contents
# encoding: utf-8 module Faker module Education extend ModuleUtils extend self DEGREE_SHORT_PREFIX = %w(AB BS BSc MA MD DMus DPhil) DEGREE_PREFIX = ['Bachelor of Science', 'Bachelor of Arts', 'Master of Arts', 'Doctor of Medicine', 'Bachelor of Music', 'Doctor of Philosophy'] MAJOR_ADJ = %w(Business Systems Industrial Medical Financial Marketing Political Social) + ['Human Resource'] SCHOOL_PREFIX = %w(Green South North Wind Lake Hill Lark River Red White) SCHOOL_ADJ = %w(International Global Polytechnic National) SCHOOL_TYPE = %w(School University College Institution Academy) SCHOOL_UNI = %w(University College) def degree_short "#{DEGREE_SHORT_PREFIX.sample} in #{major}" end def degree "#{DEGREE_PREFIX.sample} in #{major}" end def major "#{MAJOR_ADJ.sample} #{MAJOR_NOUN.sample}" end def school_name SCHOOL_PREFIX.sample + SCHOOL_SUFFIX.sample end def school_generic_name case rand(2) when 0 then AddressUS::STATE.sample when 1 then school_name end end def school case rand(5) when (0..1) then "#{school_name} #{SCHOOL_TYPE.sample}" when 2 then "#{school_generic_name} #{SCHOOL_ADJ.sample} #{SCHOOL_TYPE.sample}" when 3 then "#{SCHOOL_UNI.sample} of #{school_generic_name}" when 4 then "#{school_generic_name} #{SCHOOL_TYPE.sample} of #{MAJOR_NOUN.sample}" end end end end
Version data entries
5 entries across 5 versions & 2 rubygems