Module: SecureRandom

Defined in:
lib/omu_support/core_ext/securerandom.rb

Class Method Summary collapse

Class Method Details

.random_number_string(length, base = 10) ⇒ Object



8
9
10
# 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