forked from okta/okta-ios-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OktaJWT.podspec
23 lines (20 loc) · 887 Bytes
/
OktaJWT.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 = 'OktaJWT'
s.version = '2.3.0'
s.summary = 'A JWT verification library'
s.description = <<-DESC
Library to validate JSON Web Tokens.
DESC
s.platforms = { :ios => "12.0", :osx => "10.14"}
s.homepage = 'https://github.com/okta/okta-ios-jwt'
s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
s.author = { 'Okta Developers' => '[email protected]' }
s.source = { :git => 'https://github.com/okta/okta-ios-jwt.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/oktaDev'
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.14'
s.source_files = 'Sources/**/*.{h,m,swift}'
s.ios.exclude_files = 'Sources/**/macOS/**'
s.osx.exclude_files = 'Sources/**/iOS/**'
s.swift_version = '4.2'
end