class Randomizer

Public Instance Methods

random(ceiling) click to toggle source
# File lib/randomizer.rb, line 3
def random(ceiling)
  Kernel.rand(ceiling)
end