Skip to content

Commit 6547d6c

Browse files
committed
Rename to JSONWebToken
Turns out I missed @klaaspieter's JWT
1 parent 6526f36 commit 6547d6c

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
Pod::Spec.new do |spec|
2-
spec.name = 'JWT'
2+
spec.name = 'JSONWebToken'
33
spec.version = '1.0.0'
44
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'
66
spec.license = { :type => 'BSD', :file => 'LICENSE' }
77
spec.author = { 'Kyle Fuller' => '[email protected]' }
88
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}" }
1010
spec.source_files = 'JWT/*.swift'
1111
spec.ios.deployment_target = '8.0'
1212
spec.osx.deployment_target = '10.9'
1313
spec.requires_arc = true
1414
spec.dependency 'CryptoSwift', '~> 0.0.8'
15+
spec.module_name = 'JWT'
1516
end
1617

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# JSON Web Token
22

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)
44

55
Swift implementation of [JSON Web Token](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32).
66

@@ -9,7 +9,7 @@ Swift implementation of [JSON Web Token](https://tools.ietf.org/html/draft-ietf-
99
[CocoaPods](http://cocoapods.org/) is the recommended installation method.
1010

1111
```ruby
12-
pod 'JWT'
12+
pod 'JSONWebToken'
1313
```
1414

1515
## Usage
@@ -52,11 +52,11 @@ This library supports the following algorithms:
5252
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:
5353

5454
```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'
5656
pod 'CryptoSwift', :head
5757
```
5858

5959
## License
6060

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.
6262

0 commit comments

Comments
 (0)