class HmacSignature::Token
Attributes
key[R]
secret[R]
Public Class Methods
new(key, secret)
click to toggle source
# File lib/hmac_signature/token.rb, line 5 def initialize key, secret @key = key @secret = secret end