Skip to content

Commit

Permalink
Add Package.swift, Package.resolved, .swiftpm.
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslanskorb committed Jan 27, 2020
1 parent eddf233 commit 63b1d18
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

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

16 changes: 16 additions & 0 deletions Package.resolved
@@ -0,0 +1,16 @@
{
"object": {
"pins": [
{
"package": "RSKPlaceholderTextView",
"repositoryURL": "https://github.com/ruslanskorb/RSKPlaceholderTextView.git",
"state": {
"branch": null,
"revision": "387cca8f23437809977dad928cbfef9be005f486",
"version": "6.0.2"
}
}
]
},
"version": 1
}
20 changes: 20 additions & 0 deletions Package.swift
@@ -0,0 +1,20 @@
// swift-tools-version:5.1

import PackageDescription

let package = Package(
name: "RSKGrowingTextView",
platforms: [
.iOS(.v9)
],
products: [
.library(name: "RSKGrowingTextView", targets: ["RSKGrowingTextView"])
],
dependencies: [
.package(url: "https://github.com/ruslanskorb/RSKPlaceholderTextView.git", from: "6.0.2")
],
targets: [
.target(name: "RSKGrowingTextView", dependencies: ["RSKPlaceholderTextView"], path: "RSKGrowingTextView")
],
swiftLanguageVersions: [.v5]
)

0 comments on commit 63b1d18

Please sign in to comment.