This repository has been archived by the owner on Dec 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from inamiy/swift-package-manager
Add Swift Package Manager support
- Loading branch information
Showing
15 changed files
with
74 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "RxAutomaton", | ||
dependencies: [ | ||
.Package(url: "https://github.com/ReactiveX/RxSwift.git", majorVersion: 3), | ||
.Package(url: "https://github.com/Quick/Quick", majorVersion: 1), | ||
.Package(url: "https://github.com/Quick/Nimble", majorVersion: 5, minor: 1) | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "RxAutomaton", | ||
dependencies: [ | ||
.Package(url: "https://github.com/ReactiveX/RxSwift.git", majorVersion: 3) | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import XCTest | ||
import Quick | ||
|
||
@testable import RxAutomatonTests | ||
|
||
Quick.QCKMain([ | ||
MappingSpec.self, | ||
NextMappingSpec.self, | ||
AnyMappingSpec.self, | ||
StateFuncMappingSpec.self, | ||
NextMappingLatestSpec.self, | ||
TerminatingSpec.self | ||
]) |
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.