Skip to content
This repository has been archived by the owner on Nov 19, 2023. It is now read-only.

Commit

Permalink
Dropped CocoaPods support
Browse files Browse the repository at this point in the history
  • Loading branch information
tib committed Apr 26, 2021
1 parent 76ac39c commit 0182fb3
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 15 deletions.
4 changes: 3 additions & 1 deletion Example/Example.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 1010;
LastUpgradeCheck = 1010;
LastUpgradeCheck = 1250;
ORGANIZATIONNAME = "Tibor Bödecs";
TargetAttributes = {
16FCB5A221F277690071404B = {
Expand Down Expand Up @@ -221,6 +221,7 @@
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
Expand Down Expand Up @@ -282,6 +283,7 @@
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004

Copyright (C) 2015-2019 Tibor Bodecs <mail.tib@gmail.com>
Copyright (C) 2015-2021 Tibor Bödecs <mail.tib@gmail.com>

Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
Expand Down
5 changes: 2 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.2
// swift-tools-version:5.3
import PackageDescription

let package = Package(
Expand All @@ -10,7 +10,6 @@ let package = Package(
.library(name: "Sheet", targets: ["Sheet"]),
],
targets: [
.target(name: "Sheet", dependencies: [], path: "./Sources"),
//.testTarget(name: "CollectionViewTests", dependencies: ["Sheet"]),
.target(name: "Sheet"),
]
)
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,4 @@ A discardable action sheet.

```
.package(url: "https://github.com/CoreKit/Sheet", from: "2.0.0"),
```

## License

[WTFPL](LICENSE) - Do what the fuck you want to.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by Tibor Bödecs on 2018. 03. 24..
// Copyright © 2018. Tibor Bödecs. All rights reserved.
//

#if(canImport(UIKit))
import UIKit

open class ContinuousCornerView: UIView {
Expand Down Expand Up @@ -66,3 +66,4 @@ open class ContinuousCornerView: UIView {
path.fill()
}
}
#endif
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by Tibor Bödecs on 2018. 03. 24..
// Copyright © 2018. Tibor Bödecs. All rights reserved.
//

#if(canImport(UIKit))
import UIKit

protocol SheetPopAnimatorDelegate {
Expand Down Expand Up @@ -43,3 +43,4 @@ class SheetPopAnimatior: NSObject, UIViewControllerAnimatedTransitioning {
}
}
}
#endif
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by Tibor Bödecs on 2018. 03. 24..
// Copyright © 2018. Tibor Bödecs. All rights reserved.
//

#if(canImport(UIKit))
import UIKit

class SheetInteractiveTransition: UIPercentDrivenInteractiveTransition, UIGestureRecognizerDelegate {
Expand Down Expand Up @@ -59,3 +59,4 @@ class SheetInteractiveTransition: UIPercentDrivenInteractiveTransition, UIGestur
}
}
}
#endif
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by Tibor Bödecs on 2018. 03. 24..
// Copyright © 2018. Tibor Bödecs. All rights reserved.
//

#if(canImport(UIKit))
import UIKit

protocol SheetPushAnimatorDelegate {
Expand Down Expand Up @@ -51,3 +51,4 @@ class SheetPushAnimator: NSObject, UIViewControllerAnimatedTransitioning {
}
}
}
#endif
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by Tibor Bödecs on 2018. 03. 24..
// Copyright © 2018. Tibor Bödecs. All rights reserved.
//

#if(canImport(UIKit))
import UIKit

open class SheetViewController: UIViewController, UIGestureRecognizerDelegate {
Expand Down Expand Up @@ -234,3 +234,4 @@ extension SheetViewController {
}, completion: nil)
}
}
#endif

0 comments on commit 0182fb3

Please sign in to comment.