File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 11Pod ::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' => 'kyle@fuller.li' }
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'
1516end
1617
Original file line number Diff line number Diff line change 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
55Swift 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:
5252Support 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'
5656pod ' 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
You can’t perform that action at this time.
0 commit comments