Skip to content

Commit

Permalink
Rename to JSONWebToken
Browse files Browse the repository at this point in the history
Turns out I missed @klaaspieter's JWT
  • Loading branch information
kylef committed Apr 5, 2015
1 parent 6526f36 commit 6547d6c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions JWT.podspec → JSONWebToken.podspec
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
Pod::Spec.new do |spec|
spec.name = 'JWT'
spec.name = 'JSONWebToken'
spec.version = '1.0.0'
spec.summary = 'Swift library for JSON Web Tokens (JWT).'
spec.homepage = 'https://github.com/kylef/JWT.swift'
spec.homepage = 'https://github.com/kylef/JSONWebToken.swift'
spec.license = { :type => 'BSD', :file => 'LICENSE' }
spec.author = { 'Kyle Fuller' => 'kyle@fuller.li' }
spec.social_media_url = 'http://twitter.com/kylefuller'
spec.source = { :git => 'https://github.com/kylef/JWT.swift.git', :tag => "#{spec.version}" }
spec.source = { :git => 'https://github.com/kylef/JSONWebToken.swift.git', :tag => "#{spec.version}" }
spec.source_files = 'JWT/*.swift'
spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.9'
spec.requires_arc = true
spec.dependency 'CryptoSwift', '~> 0.0.8'
spec.module_name = 'JWT'
end

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# JSON Web Token

[![Build Status](http://img.shields.io/travis/kylef/JWT.swift/master.svg?style=flat)](https://travis-ci.org/kylef/JWT.swift)
[![Build Status](http://img.shields.io/travis/kylef/JSONWebToken.swift/master.svg?style=flat)](https://travis-ci.org/kylef/JSONWebToken.swift)

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

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

```ruby
pod 'JWT'
pod 'JSONWebToken'
```

## Usage
Expand Down Expand Up @@ -52,11 +52,11 @@ This library supports the following algorithms:
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:

```ruby
pod 'JWT', :git => 'https://github.com/kylef/JWT.swift.git', :branch => 'algorithms-hs'
pod 'JSONWebToken', :git => 'https://github.com/kylef/JSONWebToken.swift.git', :branch => 'algorithms-hs'
pod 'CryptoSwift', :head
```

## License

JWT is licensed under the BSD license. See [LICENSE](LICENSE) for more info.
JSONWebToken is licensed under the BSD license. See [LICENSE](LICENSE) for more info.

0 comments on commit 6547d6c

Please sign in to comment.