Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Commit

Permalink
Merge branch 'feature/swift-4'
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Kramer committed Sep 1, 2018
2 parents 6fb584c + 48bb72a commit a00b4b5
Show file tree
Hide file tree
Showing 35 changed files with 735 additions and 471 deletions.
13 changes: 13 additions & 0 deletions .circleci/config.yml
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
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE
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)
13 changes: 13 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE
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)?
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

3 changes: 1 addition & 2 deletions Example/Podfile
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
8 changes: 4 additions & 4 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- SwiftLuhn (0.1.0)
- SwiftLuhn (1.0.0)

DEPENDENCIES:
- SwiftLuhn (from `../`)
Expand All @@ -9,8 +9,8 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
SwiftLuhn: d3d68f95622f904b53d72839b701247ad15c15b5
SwiftLuhn: 4281267581a5cdab5333ee67128c27fe41c901f9

PODFILE CHECKSUM: 9e1dbb60127e514c2f28a3f720501ce3568de03f
PODFILE CHECKSUM: 4252bf77c5c9b4aaeb2bc96a075c9e702b75d0d9

COCOAPODS: 1.1.1
COCOAPODS: 1.5.3
22 changes: 11 additions & 11 deletions Example/Pods/Local Podspecs/SwiftLuhn.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Example/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a00b4b5

Please sign in to comment.