Method: SecureRandom.base36

Defined in:
activesupport/lib/active_support/core_ext/securerandom.rb,
activesupport/lib/active_support/core_ext/securerandom.rb

.base36(n = 16) ⇒ Object



45
46
47
# File 'activesupport/lib/active_support/core_ext/securerandom.rb', line 45

def self.base36(n = 16)
  alphanumeric(n, chars: BASE36_ALPHABET)
end