-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved SwiftyJSON version compatible with 4.2 into pod
- Loading branch information
Harlan Kellaway
committed
May 30, 2019
1 parent
5aa1c55
commit b3db349
Showing
66 changed files
with
9,529 additions
and
16 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
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,33 @@ | ||
### What did you do? | ||
|
||
Please replace this with what you did. | ||
|
||
### What did you expect to happen? | ||
|
||
Please replace this with what you expected to happen. | ||
|
||
### What actually happened instead? | ||
|
||
Please replace this with what happened instead. | ||
|
||
### Environment | ||
|
||
List the software versions you're using: | ||
|
||
- SwiftyJSON: *?.?.?* | ||
- Xcode Version: *?.? (????)* (Open Xcode; In menubar: Xcode > About Xcode) | ||
- Swift Version: *?.?* (Open Xcode Preferences; Components > Toolchains. If none, use `Xcode Default`.) | ||
|
||
Please also mention which package manager you used and its version. Delete the | ||
other package managers in this list: | ||
|
||
- Cocoapods: *?.?.?* (Use `pod --version` in Terminal) | ||
- Carthage: *?.?* (Use `carthage version` in Terminal) | ||
- Swift Package Manager *?.?.? (swiftpm-???)* (Use `swift build --version` in Terminal) | ||
|
||
### Project that demonstrates the issue | ||
|
||
Please link to a project we can download that reproduces the issue. Feel free | ||
to delete this section if it's not relevant to the issue (eg - feature request). | ||
|
||
The project should be [short, self-contained, and correct example](http://sscce.org/). |
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 @@ | ||
The PR should summarize what was changed and why. Here are some questions to | ||
help you if you're not sure: | ||
|
||
- What behavior was changed? | ||
- What code was refactored / updated to support this change? | ||
- What issues are related to this PR? Or why was this change introduced? | ||
|
||
Checklist - While not every PR needs it, new features should consider this list: | ||
|
||
- [ ] Does this have tests? | ||
- [ ] Does this have documentation? | ||
- [ ] Does this break the public API (Requires major version bump)? | ||
- [ ] Is this a new feature (Requires minor version bump)? |
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,24 @@ | ||
# Xcode | ||
.DS_Store | ||
*/build/* | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
xcuserdata | ||
profile | ||
*.moved-aside | ||
DerivedData | ||
.idea/ | ||
*.hmap | ||
*.xccheckout | ||
|
||
#CocoaPods | ||
Pods | ||
|
||
#Carthage | ||
Carthage/Build |
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,2 @@ | ||
swift: | ||
config_file: .swiftlint.yml |
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 @@ | ||
disabled_rules: | ||
- force_cast | ||
- force_try | ||
- variable_name | ||
- type_name | ||
- file_length | ||
- line_length | ||
- type_body_length | ||
- cyclomatic_complexity | ||
- function_body_length |
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 @@ | ||
language: objective-c | ||
osx_image: xcode10 | ||
xcode_sdk: iphonesimulator12.0 | ||
script: | ||
- set -o pipefail | ||
- travis_retry xcodebuild -workspace SwiftyJSON.xcworkspace -scheme "SwiftyJSON iOS" -destination "platform=iOS Simulator,name=iPhone 6" build-for-testing test | xcpretty | ||
- travis_retry xcodebuild -workspace SwiftyJSON.xcworkspace -scheme "SwiftyJSON macOS" build-for-testing test | xcpretty | ||
- travis_retry xcodebuild -workspace SwiftyJSON.xcworkspace -scheme "SwiftyJSON tvOS" -destination "platform=tvOS Simulator,name=Apple TV" build-for-testing test | xcpretty |
Oops, something went wrong.