-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
160 additions
and
353 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
MappaMundi.xcodeproj/project.xcworkspace/contents.xcworkspacedata
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
MappaMundi.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
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,16 @@ | ||
{ | ||
"object": { | ||
"pins": [ | ||
{ | ||
"package": "AStar", | ||
"repositoryURL": "https://github.com/Dev1an/A-Star.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "036256f9a8d1dda44085a2b92fa58199446a8339", | ||
"version": "3.0.0-beta-1" | ||
} | ||
} | ||
] | ||
}, | ||
"version": 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
This file was deleted.
Oops, something went wrong.
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,16 @@ | ||
{ | ||
"object": { | ||
"pins": [ | ||
{ | ||
"package": "AStar", | ||
"repositoryURL": "https://github.com/Dev1an/A-Star", | ||
"state": { | ||
"branch": null, | ||
"revision": "036256f9a8d1dda44085a2b92fa58199446a8339", | ||
"version": "3.0.0-beta-1" | ||
} | ||
} | ||
] | ||
}, | ||
"version": 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// swift-tools-version:5.3 | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "MappaMundi", | ||
products: [ | ||
.library( | ||
name: "MappaMundi", | ||
targets: ["MappaMundi"]), | ||
], | ||
dependencies: [ | ||
.package(name: "AStar", url: "https://github.com/Dev1an/A-Star", from: "3.0.0-beta-1") | ||
], | ||
targets: [ | ||
.target( | ||
name: "MappaMundi", | ||
dependencies: ["AStar"], | ||
path: "Sources") | ||
] | ||
) |
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 |
---|---|---|
@@ -1,2 +1,15 @@ | ||
# MappaMundi | ||
A declarative Don't Repeat Yourself tool for XCUITesting and screenshots. | ||
|
||
## Swift Package Manager | ||
You can add this package to your project using SPM | ||
|
||
### Required | ||
- Xcode 12 | ||
|
||
|
||
On Xcode | ||
|
||
File → Swift Packages → Add Package Dependency... | ||
|
||
Add the url to this repository and follow the on screen instructions. |
Oops, something went wrong.