1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add missing require

This commit is contained in:
Guillermo Iguaran 2015-01-09 18:24:54 -05:00
parent b109397711
commit 7e006057e0

View file

@ -1,3 +1,5 @@
require 'securerandom'
module SecureRandom
BASE58_ALPHABET = ('0'..'9').to_a + ('A'..'Z').to_a + ('a'..'z').to_a - ['0', 'O', 'I', 'l']
# SecureRandom.base58 generates a random base58 string.