This commit is contained in:
Alejandro Zalazar 2021-04-21 19:06:06 -03:00
parent cce751ccfd
commit 676d563338
13 changed files with 10 additions and 7 deletions

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Kuru'
s.version = '0.0.2'
s.version = '0.0.3'
s.summary = 'Kuru is the easy way to manipulating ui data from a server in SwiftUI.'
s.description = <<-DESC
Kuru is the easy way to manipulating ui data from a server in SwiftUI.

View File

@ -17,15 +17,11 @@ let package = Package(
// .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: "Kuru",
dependencies: [],
path: "Sources"),
dependencies: []),
.testTarget(
name: "KuruTests",
dependencies: ["Kuru"],
path: "Tests"),
dependencies: ["Kuru"]),
]
)

7
Tests/LinuxMain.swift Normal file
View File

@ -0,0 +1,7 @@
import XCTest
import KuruTests
var tests = [XCTestCaseEntry]()
tests += KuruTests.allTests()
XCTMain(tests)