Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SPM support #3

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// swift-tools-version: 5.6
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "VanillaConstraints",
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "VanillaConstraints",
targets: ["VanillaConstraints"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "VanillaConstraints",
dependencies: []),
.testTarget(
name: "VanillaConstraintsTests",
dependencies: ["VanillaConstraints"]),
]
)
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ Then, run the following command:
$ carthage update
```

### Swift Package Manager

Add the following dependency to your **Package.swift** file:

```swift
.package(url: "https://github.com/gugell/VanillaConstraints", from: "1.0.4")
```

### Manually

If you prefer not to use any of the dependency managers, you can integrate `VanillaConstraints` into your project manually, by downloading the source code and placing the files on your project directory.
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import Foundation
import UIKit

public protocol Constrainable: class {
public protocol Constrainable: AnyObject {
var parent: UIView { get }
var target: UIView { get }
}
4 changes: 2 additions & 2 deletions VanillaConstraints.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ Pod::Spec.new do |spec|
spec.authors = { 'Joan Disho' => '[email protected]' }
spec.summary = 'Simplified and chainable AutoLayout NSLayoutConstraints for iOS.'
spec.source = { :git => 'https://github.com/jdisho/VanillaConstraints.git', :tag => spec.version }
spec.swift_version = '4.0'
spec.swift_version = '5.6'
spec.ios.deployment_target = '9.0'
spec.source_files = 'VanillaConstraints/Source/*.swift'
spec.source_files = 'Sources/VanillaConstraints/**/*.swift'
spec.framework = 'Foundation'
spec.framework = 'UIKit'
end
148 changes: 75 additions & 73 deletions VanillaConstraints.xcodeproj/project.pbxproj

Large diffs are not rendered by default.