-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRxSwiftMax.podspec
More file actions
44 lines (35 loc) · 1.32 KB
/
Copy pathRxSwiftMax.podspec
File metadata and controls
44 lines (35 loc) · 1.32 KB
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
#
# Be sure to run `pod lib lint RxSwiftMax.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'RxSwiftMax'
s.version = '0.1.0'
s.summary = 'RxSwift 升级版'
s.description = <<-DESC
RxSwift 升级版
DESC
s.homepage = 'https://github.com/Boy-Rong/RxSwiftMax'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'rongheng' => 'rongheng.rh@gmail.com' }
s.source = { :git => 'https://github.com/Boy-Rong/RxSwiftMax.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.default_subspec = "RxSwift", "RxCocoa"
s.swift_version = '5.1'
s.cocoapods_version = '>= 1.6.0'
s.subspec "RxSwift" do |ss|
ss.header_dir = "RxSwift"
ss.source_files = "RxSwiftMax/Sources/RxSwift/*.swift"
ss.framework = "Foundation"
ss.dependency "RxSwift", "~> 6.1.0"
end
s.subspec "RxCocoa" do |ss|
ss.header_dir = "RxCocoa"
ss.source_files = "RxSwiftMax/Sources/RxCocoa/**/*.swift"
ss.framework = "UIKit"
ss.dependency "RxCocoa", "~> 6.1.0"
end
end