From: Ruben Beltran del Rio Date: Wed, 26 Apr 2023 14:11:04 +0000 (+0200) Subject: Initial Commit X-Git-Tag: 1.0.0~7 X-Git-Url: https://git.r.bdr.sh/rbdr/patterns/commitdiff_plain/575722f458b382e5fd847087c748439dfc88e802?ds=inline Initial Commit --- 575722f458b382e5fd847087c748439dfc88e802 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3b29812 --- /dev/null +++ b/.gitignore @@ -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 index 0000000..18d9810 --- /dev/null +++ b/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..c967b1d --- /dev/null +++ b/Package.swift @@ -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 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 index 0000000..52a8771 --- /dev/null +++ b/Sources/Patterns/Patterns.swift @@ -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 index 0000000..d45a6f7 --- /dev/null +++ b/Tests/PatternsTests/PatternsTests.swift @@ -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!") + } +}