-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRxSwiftUIKit.podspec
49 lines (28 loc) · 2.77 KB
/
RxSwiftUIKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Pod::Spec.new do |spec|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.name = "RxSwiftUIKit"
spec.version = "1.0.0"
spec.summary = "RxSwiftUIKit is an extension of [SwiftUIKit](https://github.com/sonla58/SwiftUIKit)"
spec.description = <<-DESC
RxSwiftUIKit is an extension of [SwiftUIKit](https://github.com/sonla58/SwiftUIKit). Combine with [RxSwift](https://github.com/ReactiveX/RxSwift) and [Carbon](https://github.com/ra1028/Carbon), tt gives us the ability to build the tableView or collectionView using the declarative way.
DESC
spec.homepage = "https://github.com/sonla58/RxSwiftUIKit"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.author = { "son.le" => "[email protected]" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.platform = :ios, "11.0"
spec.swift_version = '5.3'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source = { :git => "https://github.com/sonla58/RxSwiftUIKit.git", :tag => "#{spec.version}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source_files = "RxSwiftUIKit/**/*.{swift}"
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.framework = "UIKit"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.dependency 'DifferenceKit/Core', "~> 1.1"
spec.dependency 'RxSwift', '~> 6.1'
spec.dependency 'RxCocoa', '~> 6.1'
spec.dependency 'SwiftUIKit_pro', '~> 1.1.0'
end