Skip to content

Commit

Permalink
jwt 2.0 beta
Browse files Browse the repository at this point in the history
  • Loading branch information
tanner0101 committed Mar 29, 2017
1 parent ea3914a commit da62545
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import PackageDescription

let package = Package(
name: "VaporJWT",
name: "JWTProvider",
dependencies: [
// JSON Web Tokens in Swift by @siemensikkema.
.Package(url:"https://github.com/vapor/jwt.git", majorVersion: 0),
.Package(url:"https://github.com/vapor/jwt.git", Version(2,0,0, prereleaseIdentifiers: ["beta"])),

// Middleware and conveniences for using Auth in Vapor.
.Package(url:"https://github.com/vapor/auth-provider.git", majorVersion: 0),

// A web framework and server for Swift that works on macOS and Ubuntu.
.Package(url: "https://github.com/vapor/vapor.git", Version(2,0,0, prereleaseIdentifiers: ["alpha"]))
.Package(url: "https://github.com/vapor/vapor.git", Version(2,0,0, prereleaseIdentifiers: ["beta"]))
]
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import XCTest
@testable import VaporJWT
@testable import JWTProvider

class ProviderTests: XCTestCase {
static var allTests = [
Expand Down
2 changes: 1 addition & 1 deletion Tests/LinuxMain.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import XCTest
@testable import VaporJWTTests
@testable import JWTProviderTests

XCTMain([
testCase(ProviderTests.allTests),
Expand Down

0 comments on commit da62545

Please sign in to comment.