Skip to content
This repository was archived by the owner on Jul 3, 2019. It is now read-only.

Commit 6578430

Browse files
committed
Add swift package and cocoa pods
1 parent d6158d2 commit 6578430

20 files changed

+82
-10
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,8 @@ fastlane/build
104104
## Covers Carthage
105105

106106
Carthage/Checkouts
107-
Carthage/Build
107+
Carthage/Build
108+
109+
## Covers Swift Package
110+
111+
.build

.swift-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ env:
44
global:
55
- LC_CTYPE=en_US.UTF-8
66
- LANG=en_US.UTF-8
7-
- PROJECT=framework/ValidationComponents.xcodeproj
7+
- PROJECT=ValidationComponents.xcodeproj
88
- IOS_FRAMEWORK_SCHEME="ValidationComponents iOS"
99
- OSX_FRAMEWORK_SCHEME="ValidationComponents macOS"
1010
- TVOS_FRAMEWORK_SCHEME="ValidationComponents tvOS"

Package.swift

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import PackageDescription
2+
3+
let package = Package(
4+
name: "ValidationComponents",
5+
dependencies: [
6+
.Package(url: "https://github.com/nsagora/validation-kit.git", majorVersion: 0)
7+
],
8+
exclude: ["Tests"]
9+
)
File renamed without changes.

0 commit comments

Comments
 (0)