Compare commits
4 Commits
Author | SHA1 | Date |
---|---|---|
![]() |
d5aa204302 | |
![]() |
346092d519 | |
![]() |
4a740d76ea | |
![]() |
b8fc5b2b42 |
|
@ -21,9 +21,8 @@ DerivedData
|
||||||
|
|
||||||
# Bundler
|
# Bundler
|
||||||
.bundle
|
.bundle
|
||||||
|
.swiftpm
|
||||||
# Swift Package Manager
|
Package.resolved
|
||||||
.build
|
|
||||||
|
|
||||||
Carthage/Build
|
Carthage/Build
|
||||||
Pods/
|
Pods/
|
||||||
|
|
|
@ -1,11 +1,15 @@
|
||||||
// swift-tools-version:4.2
|
// swift-tools-version:5.1
|
||||||
import PackageDescription
|
import PackageDescription
|
||||||
|
|
||||||
let package = Package(
|
let package = Package(
|
||||||
name: "WolfWith",
|
name: "WolfWith",
|
||||||
|
platforms: [
|
||||||
|
.iOS(.v9), .macOS(.v10_13), .tvOS(.v11)
|
||||||
|
],
|
||||||
products: [
|
products: [
|
||||||
.library(
|
.library(
|
||||||
name: "WolfWith",
|
name: "WolfWith",
|
||||||
|
type: .dynamic,
|
||||||
targets: ["WolfWith"]),
|
targets: ["WolfWith"]),
|
||||||
],
|
],
|
||||||
targets: [
|
targets: [
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
s.name = 'WolfWith'
|
s.name = 'WolfWith'
|
||||||
s.version = '1.0.3'
|
s.version = '2.0.1'
|
||||||
s.summary = 'A Swift implementation of the With-Operator.'
|
s.summary = 'A Swift implementation of the With-Operator.'
|
||||||
|
|
||||||
# s.description = <<-DESC
|
# s.description = <<-DESC
|
||||||
|
@ -14,7 +14,7 @@ Pod::Spec.new do |s|
|
||||||
|
|
||||||
s.source_files = 'Sources/WolfWith/**/*'
|
s.source_files = 'Sources/WolfWith/**/*'
|
||||||
|
|
||||||
s.swift_version = '4.2'
|
s.swift_version = '5.0'
|
||||||
|
|
||||||
s.ios.deployment_target = '9.3'
|
s.ios.deployment_target = '9.3'
|
||||||
s.macos.deployment_target = '10.13'
|
s.macos.deployment_target = '10.13'
|
||||||
|
|
Loading…
Reference in New Issue