- Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathReusableKit.podspec
More file actions
Latest commit
28 lines (24 loc) · 923 Bytes
/
Copy pathReusableKit.podspec
File metadata and controls
28 lines (24 loc) · 923 Bytes
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
Pod::Spec.newdo |s|
s.name="ReusableKit"
s.version="4.0.0"
s.summary="Generic reusables for Cocoa."
s.homepage="https://github.com/devxoul/ReusableKit"
s.license={:type=>"MIT",:file=>"LICENSE"}
s.author={"Suyeol Jeon"=>"devxoul@gmail.com"}
s.source={:git=>"https://github.com/devxoul/ReusableKit.git",
:tag=>s.version.to_s}
s.frameworks='UIKit','Foundation'
s.requires_arc=true
s.swift_version="5.0"
s.ios.deployment_target="9.0"
s.default_subspec="Core"
s.subspec"Core"do |ss|
ss.source_files="Sources/ReusableKit/*.swift"
end
s.subspec"RxSwift"do |ss|
ss.source_files="Sources/RxReusableKit/*.swift"
ss.dependency"ReusableKit/Core"
ss.dependency"RxSwift","~> 6.0"
ss.dependency"RxCocoa","~> 6.0"
end
end