Skip to content

Commit

Permalink
Fix SPM
Browse files Browse the repository at this point in the history
  • Loading branch information
Alejandro Zalazar committed Apr 21, 2021
1 parent cce751c commit 676d563
Show file tree
Hide file tree
Showing 13 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Kuru.podspec
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
8 changes: 2 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"]),
]
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions Tests/LinuxMain.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import XCTest

import KuruTests

var tests = [XCTestCaseEntry]()
tests += KuruTests.allTests()
XCTMain(tests)

0 comments on commit 676d563

Please sign in to comment.