summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/jwt/rsa_token.rb2
-rw-r--r--lib/jwt/token.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/jwt/rsa_token.rb b/lib/jwt/rsa_token.rb
index cc265e3b31a..0438135ad54 100644
--- a/lib/jwt/rsa_token.rb
+++ b/lib/jwt/rsa_token.rb
@@ -1,4 +1,4 @@
-module Jwt
+module JWT
class RSAToken < Token
attr_reader :key_file
diff --git a/lib/jwt/token.rb b/lib/jwt/token.rb
index 765ab0d60c7..f13abf2b71f 100644
--- a/lib/jwt/token.rb
+++ b/lib/jwt/token.rb
@@ -1,4 +1,4 @@
-module Jwt
+module JWT
class Token
attr_accessor :issuer, :subject, :audience, :id
attr_accessor :issued_at, :not_before, :expire_time
@@ -43,4 +43,4 @@ module Jwt
}.compact
end
end
-end \ No newline at end of file
+end