forked from auth0/JWTDecode.swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JWTDecode.podspec
23 lines (21 loc) · 1.01 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
23
Pod::Spec.new do |s|
s.name = 'JWTDecode'
s.version = '3.2.0'
s.summary = 'A JWT decoder for iOS, macOS, tvOS, and watchOS'
s.description = <<-DESC
Easily decode a JWT and access the claims it contains.
> This library doesn't validate the JWT. Any well-formed JWT can be decoded from Base64URL.
DESC
s.homepage = 'https://github.com/auth0/JWTDecode.swift'
s.license = 'MIT'
s.author = { 'Auth0' => 'support@auth0.com', 'Rita Zerrizuela' => 'rita.zerrizuela@auth0.com' }
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 = '14.0'
s.osx.deployment_target = '11.0'
s.tvos.deployment_target = '14.0'
s.watchos.deployment_target = '7.0'
s.visionos.deployment_target = '1.0'
s.source_files = 'JWTDecode/*.swift'
s.swift_versions = ['5.9']
end