]> git.r.bdr.sh - rbdr/patterns/commitdiff
Initial Commit
authorRuben Beltran del Rio <redacted>
Wed, 26 Apr 2023 14:11:04 +0000 (16:11 +0200)
committerRuben Beltran del Rio <redacted>
Wed, 26 Apr 2023 14:11:04 +0000 (16:11 +0200)
.gitignore [new file with mode: 0644]
.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist [new file with mode: 0644]
Package.swift [new file with mode: 0644]
README.md [new file with mode: 0644]
Sources/Patterns/Patterns.swift [new file with mode: 0644]
Tests/PatternsTests/PatternsTests.swift [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..3b29812
--- /dev/null
@@ -0,0 +1,9 @@
+.DS_Store
+/.build
+/Packages
+/*.xcodeproj
+xcuserdata/
+DerivedData/
+.swiftpm/config/registries.json
+.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
+.netrc
diff --git a/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644 (file)
index 0000000..18d9810
--- /dev/null
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+       <key>IDEDidComputeMac32BitWarning</key>
+       <true/>
+</dict>
+</plist>
diff --git a/Package.swift b/Package.swift
new file mode 100644 (file)
index 0000000..c967b1d
--- /dev/null
@@ -0,0 +1,28 @@
+// swift-tools-version: 5.8
+// The swift-tools-version declares the minimum version of Swift required to build this package.
+
+import PackageDescription
+
+let package = Package(
+    name: "Patterns",
+    products: [
+        // Products define the executables and libraries a package produces, and make them visible to other packages.
+        .library(
+            name: "Patterns",
+            targets: ["Patterns"]),
+    ],
+    dependencies: [
+        // Dependencies declare other packages that this package depends on.
+        // .package(url: /* package url */, from: "1.0.0"),
+    ],
+    targets: [
+        // Targets are the basic building blocks of a package. A target can define a module or a test suite.
+        // Targets can depend on other targets in this package, and on products in packages this package depends on.
+        .target(
+            name: "Patterns",
+            dependencies: []),
+        .testTarget(
+            name: "PatternsTests",
+            dependencies: ["Patterns"]),
+    ]
+)
diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..bafd25c
--- /dev/null
+++ b/README.md
@@ -0,0 +1,3 @@
+# Patterns
+
+A description of this package.
diff --git a/Sources/Patterns/Patterns.swift b/Sources/Patterns/Patterns.swift
new file mode 100644 (file)
index 0000000..52a8771
--- /dev/null
@@ -0,0 +1,6 @@
+public struct Patterns {
+    public private(set) var text = "Hello, World!"
+
+    public init() {
+    }
+}
diff --git a/Tests/PatternsTests/PatternsTests.swift b/Tests/PatternsTests/PatternsTests.swift
new file mode 100644 (file)
index 0000000..d45a6f7
--- /dev/null
@@ -0,0 +1,11 @@
+import XCTest
+@testable import Patterns
+
+final class PatternsTests: XCTestCase {
+    func testExample() throws {
+        // This is an example of a functional test case.
+        // Use XCTAssert and related functions to verify your tests produce the correct
+        // results.
+        XCTAssertEqual(Patterns().text, "Hello, World!")
+    }
+}