class MegaLotto::Drawing

Public Instance Methods

draw() click to toggle source
# File lib/mega_lotto_jb/drawing.rb, line 3
def draw
  5.times.map { single_draw }
end
single_draw() click to toggle source
# File lib/mega_lotto_jb/drawing.rb, line 7
def single_draw
  rand(0...60)
end