Skip to content
This repository was archived by the owner on Mar 10, 2022. It is now read-only.

Commit 29f945c

Browse files
author
Jakob Mygind
authored
Merge pull request #34 from nodes-ios/develop
Develop
2 parents f69f56c + 0f92075 commit 29f945c

6 files changed

+27
-318
lines changed

Package.swift

+25-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,30 @@
1-
//
2-
// Package.swift
3-
// Keyboardhelper
4-
//
5-
// Copyright (c) 2016 Nodes iOS
6-
//
1+
// swift-tools-version:5.0
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
73

84
import PackageDescription
95

106
let package = Package(
11-
name: "KeyboardHelper"
7+
name: "KeyboardHelper",
8+
platforms: [ .iOS(.v8) ],
9+
products: [
10+
// Products define the executables and libraries produced by a package, and make them visible to other packages.
11+
.library(
12+
name: "KeyboardHelper",
13+
targets: ["KeyboardHelper"]),
14+
],
15+
dependencies: [
16+
// Dependencies declare other packages that this package depends on.
17+
// .package(url: /* package url */, from: "1.0.0"),
18+
],
19+
targets: [
20+
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
21+
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
22+
.target(
23+
name: "KeyboardHelper",
24+
dependencies: []),
25+
.testTarget(
26+
name: "KeyboardHelperTests",
27+
dependencies: ["KeyboardHelper"],
28+
path: "KeyboardHelperTests/Tests"),
29+
]
1230
)

Sources/KeyboardAppearanceInfo.swift

-1
This file was deleted.

Sources/KeyboardHelper.swift

-1
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../Keyboardhelper/Classes/KeyboardAppearanceInfo.swift
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../Keyboardhelper/Classes/KeyboardHelper.swift

0 commit comments

Comments
 (0)