Skip to content

Commit 115f02e

Browse files
committed
🛠 Update register to use RouteBuilder
1 parent ce7a1bb commit 115f02e

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

‎Package.swift‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import PackageDescription
2727
let package = Package(
2828
name: "swift-vapor-route-builder",
2929
platforms: [
30-
.macOS(.v10_15)
30+
.macOS(.v14)
3131
],
3232
products: [
3333
.library(name: "VaporRouteBuilder", targets: ["VaporRouteBuilder"])
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// MIT License
2+
//
3+
// Copyright (c) 2024 Connor Ricks
4+
//
5+
// Permission is hereby granted, free of charge, to any person obtaining a copy
6+
// of this software and associated documentation files (the "Software"), to deal
7+
// in the Software without restriction, including without limitation the rights
8+
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
// copies of the Software, and to permit persons to whom the Software is
10+
// furnished to do so, subject to the following conditions:
11+
//
12+
// The above copyright notice and this permission notice shall be included in all
13+
// copies or substantial portions of the Software.
14+
//
15+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
// SOFTWARE.
22+
23+
import Vapor
24+
25+
extension RoutesBuilder {
26+
/// Registers the provided content to this router.
27+
/// - parameters:
28+
/// - content: The `RouteComponent` to register.
29+
public func register<C: RouteComponent>(@RouteBuilder _ content: () -> C) throws {
30+
try content().boot(routes: self)
31+
}
32+
}

‎Tests/VaporRouteBuilderTests/Helpers/Application+Testing.swift‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ extension Application {
2929
_ body: (Application) async throws -> Void
3030
) async throws {
3131
let app = try await Application.make(.testing)
32-
try app.routes.register(collection: content())
32+
try app.routes.register(content)
3333
try await body(app)
3434
try await app.asyncShutdown()
3535
}

0 commit comments

Comments
 (0)