module SecureRandom
Public Instance Methods
random_number_string(length, base = 10)
click to toggle source
# File lib/omu_support/core_ext/securerandom.rb, line 8 def random_number_string(length, base = 10) random_number(base**length).to_string(length, base) end