File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |spec |
2
- spec . name = 'JWT '
2
+ spec . name = 'JSONWebToken '
3
3
spec . version = '1.0.0'
4
4
spec . summary = 'Swift library for JSON Web Tokens (JWT).'
5
- spec . homepage = 'https://github.com/kylef/JWT .swift'
5
+ spec . homepage = 'https://github.com/kylef/JSONWebToken .swift'
6
6
spec . license = { :type => 'BSD' , :file => 'LICENSE' }
7
7
spec . author = { 'Kyle Fuller' => '[email protected] ' }
8
8
spec . social_media_url = 'http://twitter.com/kylefuller'
9
- spec . source = { :git => 'https://github.com/kylef/JWT .swift.git' , :tag => "#{ spec . version } " }
9
+ spec . source = { :git => 'https://github.com/kylef/JSONWebToken .swift.git' , :tag => "#{ spec . version } " }
10
10
spec . source_files = 'JWT/*.swift'
11
11
spec . ios . deployment_target = '8.0'
12
12
spec . osx . deployment_target = '10.9'
13
13
spec . requires_arc = true
14
14
spec . dependency 'CryptoSwift' , '~> 0.0.8'
15
+ spec . module_name = 'JWT'
15
16
end
16
17
Original file line number Diff line number Diff line change 1
1
# JSON Web Token
2
2
3
- [ ![ Build Status] ( http://img.shields.io/travis/kylef/JWT .swift/master.svg?style=flat )] ( https://travis-ci.org/kylef/JWT .swift )
3
+ [ ![ Build Status] ( http://img.shields.io/travis/kylef/JSONWebToken .swift/master.svg?style=flat )] ( https://travis-ci.org/kylef/JSONWebToken .swift )
4
4
5
5
Swift implementation of [ JSON Web Token] ( https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32 ) .
6
6
@@ -9,7 +9,7 @@ Swift implementation of [JSON Web Token](https://tools.ietf.org/html/draft-ietf-
9
9
[ CocoaPods] ( http://cocoapods.org/ ) is the recommended installation method.
10
10
11
11
``` ruby
12
- pod ' JWT '
12
+ pod ' JSONWebToken '
13
13
```
14
14
15
15
## Usage
@@ -52,11 +52,11 @@ This library supports the following algorithms:
52
52
Support for HS384 and HS512 can be found in the ` algorithms-hs ` branch which depends on an unreleased version of CryptoSwift. It can be installed via:
53
53
54
54
``` ruby
55
- pod ' JWT ' , :git => ' https://github.com/kylef/JWT .swift.git' , :branch => ' algorithms-hs'
55
+ pod ' JSONWebToken ' , :git => ' https://github.com/kylef/JSONWebToken .swift.git' , :branch => ' algorithms-hs'
56
56
pod ' CryptoSwift' , :head
57
57
```
58
58
59
59
## License
60
60
61
- JWT is licensed under the BSD license. See [ LICENSE] ( LICENSE ) for more info.
61
+ JSONWebToken is licensed under the BSD license. See [ LICENSE] ( LICENSE ) for more info.
62
62
You can’t perform that action at this time.
0 commit comments