Sha256: 0704b8c042d292d66ff074f175dcedcb31620e28510bd13d3e350aee9391aaaf
Contents?: true
Size: 325 Bytes
Versions: 12
Compression:
Stored size: 325 Bytes
Contents
# frozen_string_literal: true module FFaker # Inspirations: # https://pl.wikipedia.org/wiki/P%C5%82e%C4%87 module GenderPL extend ModuleUtils extend self GENDERS = %w[kobieta mężczyzna].freeze def random fetch_sample(GENDERS) end alias maybe random alias sample random end end
Version data entries
12 entries across 12 versions & 1 rubygems