Fix dependency manager configs
This commit is contained in:
parent
339d7443a9
commit
68fe9c6f17
|
@ -1 +0,0 @@
|
|||
5
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Workspace
|
||||
version = "1.0">
|
||||
<FileRef
|
||||
location = "self:">
|
||||
</FileRef>
|
||||
</Workspace>
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>IDEDidComputeMac32BitWarning</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
|
@ -2,6 +2,7 @@ Pod::Spec.new do |s|
|
|||
s.name = 'DynamicColor'
|
||||
s.version = '4.2.0'
|
||||
s.license = 'MIT'
|
||||
s.swift_version = ['5.0', '5.1']
|
||||
s.summary = 'Yet another extension to manipulate colors easily in Swift (UIColor and NSColor)'
|
||||
s.homepage = 'https://github.com/yannickl/DynamicColor.git'
|
||||
s.social_media_url = 'https://twitter.com/yannickloriot'
|
||||
|
|
|
@ -1,31 +1,20 @@
|
|||
//
|
||||
// DynamicColor
|
||||
//
|
||||
// Copyright 2015-present Yannick Loriot.
|
||||
// http://yannickloriot.com
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights
|
||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
// copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
// THE SOFTWARE.
|
||||
//
|
||||
|
||||
// swift-tools-version:5.0
|
||||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "DynamicColor"
|
||||
name: "DynamicColor",
|
||||
products: [
|
||||
.library(name: "DynamicColor", targets: ["DynamicColor"]),
|
||||
],
|
||||
targets: [
|
||||
.target(
|
||||
name: "DynamicColor",
|
||||
dependencies: [],
|
||||
path: "Sources"),
|
||||
.testTarget(
|
||||
name: "DynamicColorTests",
|
||||
dependencies: ["DynamicColor"],
|
||||
path: "Tests"),
|
||||
]
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue