module TinyAuth
Constants
- VERSION
Public Class Methods
secret=(secret)
click to toggle source
Configure the secret used to sign and verify tokens. @param secret [String]
# File lib/tiny_auth.rb, line 10 def secret=(secret) @verifier = Verifier.new(secret) end