We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9bd981 commit fdaa706Copy full SHA for fdaa706
.gitignore
@@ -32,3 +32,7 @@ Pods/
32
Carthage/Checkouts
33
Carthage/Build
34
.DS_Store
35
+
36
+# SPM
37
+#
38
+Packages
Package.swift
@@ -0,0 +1,15 @@
1
+import PackageDescription
2
3
+let package = Package(
4
+ name: "Action",
5
+ targets: [],
6
+ dependencies: [
7
+ .Package(url: "https://github.com/ReactiveX/RxSwift.git", majorVersion: 3)
8
+ ],
9
+ exclude: [
10
+ "Sources/Action/UIKitExtensions/AlertAction.swift",
11
+ "Sources/Action/UIKitExtensions/UIBarButtonItem+Action.swift",
12
+ "Sources/Action/UIKitExtensions/UIButton+Rx.swift",
13
+ ]
14
+)
15
0 commit comments