forked from auth0/JWTDecode.swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JWTDecode.podspec
22 lines (20 loc) · 1.03 KB
/
JWTDecode.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
version = `agvtool mvers -terse1`.strip
Pod::Spec.new do |s|
s.name = "JWTDecode"
s.version = version
s.summary = "A JSON Web Token decoder for iOS, macOS, tvOS"
s.description = <<-DESC
Decode a JWT to retrieve it's payload and also check for its expiration.
> This library does not perform any validation of the JWT signature, it only decodes the token from Base64
DESC
s.homepage = "https://github.com/auth0/JWTDecode.swift"
s.license = 'MIT'
s.author = { "Auth0" => "[email protected]", "Hernan Zalazar" => "[email protected]", "Martin Walsh" => "[email protected]" }
s.source = { :git => "https://github.com/auth0/JWTDecode.swift.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/auth0'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = "10.9"
s.tvos.deployment_target = "9.2"
s.requires_arc = true
s.source_files = 'JWTDecode/*.swift'
end