free_mutant/lib/mutant/random.rb

37 lines
525 B
Ruby
Raw Normal View History

module Mutant
# Module for generating random values
module Random
# Return random hex string
#
# @return [String]
#
# @api private
#
def self.hex_string
SecureRandom.hex(10)
end
# Return random fixnum
#
# @return [Fixnum]
#
# @api private
#
def self.fixnum
2012-08-14 16:45:34 -04:00
::Random.rand(1000)
end
# Return random float
#
# @return [Float]
#
# @api private
#
def self.float
2012-08-14 16:45:34 -04:00
::Random.rand
end
2013-06-14 14:54:02 -04:00
end # Random
end # Mutant