class Authenticate::Token
A secure token, consisting of a big random number.
Public Class Methods
new()
click to toggle source
# File lib/authenticate/token.rb, line 6 def self.new SecureRandom.hex(20).encode('UTF-8') end