Sha256: 9648c6d0f37db18f18938a50a1d745bc4849b6ad520bfd1de711c4fa0e5f9920
Contents?: true
Size: 383 Bytes
Versions: 6
Compression:
Stored size: 383 Bytes
Contents
# encoding: utf-8 module Faker module Skill extend ModuleUtils extend self def tech_skill TECH_SKILLS.sample end def tech_skills(num = 3) TECH_SKILLS.random_pick(num) end def specialty "%s %s" % [SPECIALTY_START.sample, SPECIALTY_END.sample] end def specialties(num = 3) (1..num).map { specialty } end end end
Version data entries
6 entries across 6 versions & 2 rubygems