Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 891 Bytes

sport.md

File metadata and controls

41 lines (27 loc) · 891 Bytes

Faker::Sport

Conventional (Olympic including Paralympic) Sports

# Any one of the below four categories:
Faker::Sport.sport #=> "Snowboard"

Faker::Sport.summer_olympics_sport #=> "Triathlon"

Faker::Sport.winter_olympics_sport #=> "Luge"

Faker::Sport.summer_paralympics_sport #=> "Goalball"

Faker::Sport.winter_paralympics_sport #=> "Wheelchair curling"

Ancient Sports

Faker::Sport.ancient_olympics_sport #=> "Chariot racing"

# Any modern or ancient olympic sport:
Faker::Sport.sport(include_ancient: true) #=> "Rugby"

Unusual Sports (just for fun)

Faker::Sport.unusual_sport #=> "Camel wrestling"

# Any modern olympic or unusual sport:
Faker::Sport.sport(include_unusual: true) #=> "Gurning"

Full list

# Modern, ancient or unusual:
Faker::Sport.sport(include_ancient: true, include_unusual: true) #=> "Powerlifting"