Sha256: f3c3b774d893ce47801e2d2b6cac85c4bbd4f5ea3eae96bd2bace2a6904b6b97

Contents?: true

Size: 383 Bytes

Versions: 1

Compression:

Stored size: 383 Bytes

Contents

# frozen_string_literal: true

module FFakerTW
  # 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

1 entries across 1 versions & 1 rubygems

Version Path
ffakerTW-0.1.0 lib/ffakerTW/sport_ru.rb