This repository has been archived by the owner on Jan 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
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
35 changed files
with
735 additions
and
471 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,13 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
macos: | ||
xcode: 9.4.1 | ||
steps: | ||
- checkout | ||
- run: | ||
name: Run tests | ||
command: xcodebuild test -destination "platform=iOS Simulator,name=iPhone 7" -workspace Example/SwiftLuhn.xcworkspace -scheme SwiftLuhn-Example | xcpretty | ||
- run: | ||
name: Verify valid podspec | ||
command: pod lib lint --swift-version=4.0 |
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,25 @@ | ||
### 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: | ||
|
||
- 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) |
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 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,11 +1,10 @@ | ||
use_frameworks! | ||
|
||
platform :ios, '8.3' | ||
target 'SwiftLuhn_Example' do | ||
pod 'SwiftLuhn', :path => '../' | ||
|
||
target 'SwiftLuhn_Tests' do | ||
inherit! :search_paths | ||
|
||
|
||
end | ||
end |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.