-
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.
* Migrate from Xcode Project to Swift Package * Add editorconfig for swift files * Update license to 2020 * Update readme, include SPM instructions * Adjust playgroundbook build script for new directory structure * Update travis ci config for swift package * Only build main branch (and PRs) * Update podspec
- Loading branch information
1 parent
1f34150
commit a63835e
Showing
17 changed files
with
114 additions
and
609 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,3 @@ | ||
[*.swift] | ||
indent_style = space | ||
indent_size = 4 |
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 |
---|---|---|
@@ -1,18 +1,13 @@ | ||
language: objective-c | ||
|
||
xcode_project: SwipyCell.xcodeproj | ||
xcode_scheme: SwipyCell | ||
osx_image: xcode11.1 | ||
xcode_sdk: iphonesimulator13.1 | ||
language: swift | ||
osx_image: xcode12 | ||
|
||
branches: | ||
except: | ||
- develop | ||
only: | ||
- main | ||
|
||
before_install: | ||
- gem update cocoapods | ||
- gem install xcpretty --quiet | ||
|
||
script: | ||
- xcodebuild -project SwipyCell.xcodeproj -scheme SwipyCell -sdk iphonesimulator clean build | xcpretty | ||
- swift build -Xswiftc "-sdk" -Xswiftc "`xcrun --sdk iphonesimulator --show-sdk-path`" -Xswiftc "-target" -Xswiftc "x86_64-apple-ios14.0-simulator" | ||
- pod lib lint |
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 |
---|---|---|
@@ -1,5 +1,15 @@ | ||
// swift-tools-version:5.3 | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "SwipyCell" | ||
name: "SwipyCell", | ||
platforms: [ | ||
.iOS(.v12) | ||
], | ||
products: [ | ||
.library(name: "SwipyCell", targets: ["SwipyCell"]) | ||
], | ||
targets: [ | ||
.target(name: "SwipyCell") | ||
] | ||
) |
Oops, something went wrong.