diff options
Diffstat (limited to 'lib/json_web_token/token.rb')
-rw-r--r-- | lib/json_web_token/token.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/json_web_token/token.rb b/lib/json_web_token/token.rb index c59beef02c9..f69a86ef5cc 100644 --- a/lib/json_web_token/token.rb +++ b/lib/json_web_token/token.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -require 'securerandom' +require "securerandom" module JSONWebToken class Token @@ -46,7 +46,7 @@ module JSONWebToken iss: issuer, iat: issued_at.to_i, nbf: not_before.to_i, - exp: expire_time.to_i + exp: expire_time.to_i, }.compact end end |