Sha256: bd3486fc8bac3814cb521408fa867a3f012bf758cf06f05544fd468951158338
Contents?: true
Size: 381 Bytes
Versions: 6
Compression:
Stored size: 381 Bytes
Contents
# frozen_string_literal: true module FFaker # Inspirations: # https://olympic.ru/team/sport/ # http://ru.sport-wiki.org/vidy-sporta/ module SportRU extend ModuleUtils extend self ALL = SUMMER + WINTER def name fetch_sample(ALL) end def summer fetch_sample(SUMMER) end def winter fetch_sample(WINTER) end end end
Version data entries
6 entries across 6 versions & 1 rubygems