class Auth0RS256JWTVerifier::UserId
Public Class Methods
new(id)
click to toggle source
# File lib/auth0_rs256_jwt_verifier/user_id.rb, line 4 def initialize(id) @id = String(id).dup.freeze end
Public Instance Methods
==(other)
click to toggle source
# File lib/auth0_rs256_jwt_verifier/user_id.rb, line 16 def ==(other) String(self) == String(other) end
inspect()
click to toggle source
# File lib/auth0_rs256_jwt_verifier/user_id.rb, line 20 def inspect "Auth0RS256JWTVerifier::UserId(#{@id})" end
to_s()
click to toggle source
# File lib/auth0_rs256_jwt_verifier/user_id.rb, line 8 def to_s @id end
to_str()
click to toggle source
# File lib/auth0_rs256_jwt_verifier/user_id.rb, line 12 def to_str to_s end