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