class Faker::Beer
def alcohol
-
(String)
-
def alcohol "#{rand(2.0..10.0).round(1)}%" end
def blg
-
(String)
-
def blg "#{rand(5.0..20.0).round(1)}°Blg" end
def hop
-
(String)
-
def hop fetch('beer.hop') end
def ibu
-
(String)
-
def ibu "#{rand(10..100)} IBU" end
def malts
-
(String)
-
def malts fetch('beer.malt') end
def name
-
(String)
-
def name fetch('beer.name') end
def style
-
(String)
-
def style fetch('beer.style') end
def yeast
-
(String)
-
def yeast fetch('beer.yeast') end