Module: FFaker::GenderPL
Overview
Inspirations: pl.wikipedia.org/wiki/P%C5%82e%C4%87
Constant Summary collapse
- GENDERS =
%w[kobieta mężczyzna].freeze
Instance Method Summary collapse
- #random ⇒ Object (also: #maybe, #sample)
Methods included from ModuleUtils
const_missing, k, luhn_check, underscore, unique
Methods included from RandomUtils
#fetch_sample, #rand, #shuffle
Instance Method Details
#random ⇒ Object Also known as: maybe, sample
12 13 14 |
# File 'lib/ffaker/gender_pl.rb', line 12 def random fetch_sample(GENDERS) end |