Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add YARD doc for Faker::Food #1802

Merged
merged 4 commits into from Dec 5, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
66 changes: 65 additions & 1 deletion lib/faker/default/food.rb
Expand Up @@ -5,42 +5,106 @@ class Food < Base
flexible :food

class << self
# Retrieves a typical dish from each country
##
# Retrieves a typical dish from each country.
#
# @return [String]
#
# @example
# Faker::Food.dish #=> "Feijoada"
#
# @faker.version 1.8.0
def dish
fetch('food.dish')
end

##
# Retrieves a description about some dish
#
# @return [String]
#
# @example
# Faker::Food.description #=> "Breaded fried chicken with waffles. Served with maple syrup."
#
# @faker.version 1.9.0
def description
fetch('food.descriptions')
end

##
# Retrieves an ingredient
#
# @return [String]
#
# @example
# Faker::Food.ingredient #=> "Olives"
#
# @faker.version 1.7.0
def ingredient
fetch('food.ingredients')
end

##
# Retrieves a fruit
#
# @return [String]
#
# @example
# Faker::Food.fruits #=> "Papaya"
#
# @faker.version 1.9.0
def fruits
fetch('food.fruits')
end

##
# Retrieves a vegetable
#
# @return [String]
#
# @example
# Faker::Food.vegetables #=> "Broccolini"
#
# @faker.version 1.9.0
def vegetables
fetch('food.vegetables')
end

##
# Retrieves some random spice
#
# @return [String]
#
# @example
# Faker::Food.spice #=> "Garlic Chips"
#
# @faker.version 1.7.0
def spice
fetch('food.spices')
end

##
# Retrieves cooking measures
#
# @return [String]
#
# @example
# Faker::Food.measurement #=> "1/3"
#
# @faker.version 1.7.0
def measurement
fetch('food.measurement_sizes') + ' ' + fetch('food.measurements')
end

##
# Retrieves metric mesurements
#
# @return [String]
#
# @example
# Faker::Food.metric_measurement #=> "centiliter"
#
# @faker.version 1.8.3
def metric_measurement
fetch('food.metric_measurements')
end
Expand Down