Skip to content

Commit 5a862f1

Browse files
committed
Implement basic verify
1 parent ff839f1 commit 5a862f1

File tree

9 files changed

+681
-0
lines changed

9 files changed

+681
-0
lines changed

JWT.podspec

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = 'JWT'
3+
spec.version = '1.0.0'
4+
spec.summary = 'Swift library for JSON Web Tokens (JWT).'
5+
spec.homepage = 'https://github.com/kylef/JWT.swift'
6+
spec.license = { :type => 'BSD', :file => 'LICENSE' }
7+
spec.author = { 'Kyle Fuller' => '[email protected]' }
8+
spec.social_media_url = 'http://twitter.com/kylefuller'
9+
spec.source = { :git => 'https://github.com/kylef/JWT.swift.git', :tag => "#{spec.version}" }
10+
spec.source_files = 'JWT/*.swift'
11+
spec.ios.deployment_target = '8.0'
12+
spec.osx.deployment_target = '10.9'
13+
spec.requires_arc = true
14+
end
15+

0 commit comments

Comments
 (0)