Skip to content

Commit b593924

Browse files
committed
readme + updates
1 parent 22a2388 commit b593924

File tree

3 files changed

+32
-26
lines changed

3 files changed

+32
-26
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ let package = Package(
44
name: "AuthProvider",
55
dependencies: [
66
// A web framework and server for Swift that works on macOS and Ubuntu.
7-
.Package(url: "https://github.com/vapor/auth.git", majorVersion: 0),
7+
.Package(url: "https://github.com/vapor/auth.git", Version(1,0,0, prereleaseIdentifiers: ["beta"])),
88

99
// A web framework and server for Swift that works on macOS and Ubuntu.
1010
.Package(url: "https://github.com/vapor/vapor.git", Version(2,0,0, prereleaseIdentifiers: ["beta"]))

README.md

Lines changed: 20 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
1-
# Auth Provider
2-
3-
![Swift](http://img.shields.io/badge/swift-3.1-brightgreen.svg)
4-
[![CircleCI](https://circleci.com/gh/vapor/auth-provider.svg?style=shield)](https://circleci.com/gh/vapor/auth-provider)
5-
[![Slack Status](http://vapor.team/badge.svg)](http://vapor.team)
6-
7-
Integrates the [Auth](https://github.com/vapor/auth) package with the [Vapor](https://github.com/vapor/vapor) web framework.
8-
9-
- [x] Token Authentication
10-
- [x] Username/Password Authentication
11-
- [x] Permission based Authorization
12-
13-
14-
## 📖 Documentation
15-
16-
Visit the Vapor web framework's [documentation](http://docs.vapor.codes) for instructions on how to use this package.
17-
18-
## 💧 Community
19-
20-
Join the welcoming community of fellow Vapor developers in [slack](http://vapor.team).
21-
22-
## 🔧 Compatibility
23-
24-
This package has been tested on macOS and Ubuntu.
1+
<p align="center">
2+
<img src="https://cloud.githubusercontent.com/assets/1342803/24793690/44126c56-1b83-11e7-99de-d9ed72dab9c7.png" width="320" alt="Auth Provider">
3+
<br>
4+
<br>
5+
<a href="http://beta.docs.vapor.codes/auth/package/">
6+
<img src="http://img.shields.io/badge/read_the-docs-92A8D1.svg" alt="Documentation">
7+
</a>
8+
<a href="http://vapor.team">
9+
<img src="http://vapor.team/badge.svg" alt="Slack Team">
10+
</a>
11+
<a href="LICENSE">
12+
<img src="http://img.shields.io/badge/license-MIT-brightgreen.svg" alt="MIT License">
13+
</a>
14+
<a href="https://circleci.com/gh/vapor/auth-provider">
15+
<img src="https://circleci.com/gh/vapor/auth-provider.svg?style=shield" alt="Continuous Integration">
16+
</a>
17+
<a href="https://swift.org">
18+
<img src="http://img.shields.io/badge/swift-3.1-brightgreen.svg" alt="Swift 3.1">
19+
</a>
20+
</center>

circle.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
machine:
2+
services:
3+
- mysql
4+
dependencies:
5+
override:
6+
- eval "$(curl -sL https://apt.vapor.sh)"
7+
- sudo apt-get install vapor
8+
- sudo chmod -R a+rx /usr/
19
test:
210
override:
3-
- eval "$(curl -sL swift.vapor.sh/ci-3.1)"
11+
- swift build
12+
- swift build -c release
13+
- swift test

0 commit comments

Comments
 (0)