-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
LXFProtocolTool.podspec
72 lines (61 loc) · 2.63 KB
/
LXFProtocolTool.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#
# Be sure to run `pod lib lint LXFProtocolTool.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 http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'LXFProtocolTool'
s.version = '3.2.1'
s.summary = 'LXFProtocolTool是实用的协议应用工具库'
s.description = <<-DESC
LXFProtocolTool是使用Swift中的协议来实现多种方便、实用的工具库
DESC
s.homepage = 'https://github.com/LinXunFeng/LXFProtocolTool'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'LinXunFeng' => '[email protected]' }
s.source = { :git => 'https://github.com/LinXunFeng/LXFProtocolTool.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.swift_version = "5.0"
s.source_files = 'LXFProtocolTool/Classes/**/*.swift'
s.subspec "Base" do |t|
t.source_files = "LXFProtocolTool/Classes/Base/**/*.{swift}"
end
s.subspec 'LXFNibloadable' do |t|
t.source_files = 'LXFProtocolTool/Classes/LXFNibloadable/**/*.{swift}'
end
s.subspec 'Refreshable' do |t|
t.source_files = 'LXFProtocolTool/Classes/Refreshable/**/*.{swift}'
t.dependency 'MJRefresh', '>= 3.5.0'
t.dependency 'RxSwift', '>= 6'
t.dependency 'RxRelay', '>= 6'
t.dependency "LXFProtocolTool/AssociatedObjectStore"
t.dependency "LXFProtocolTool/Base"
end
s.subspec 'EmptyDataSetable' do |t|
t.source_files = 'LXFProtocolTool/Classes/EmptyDataSetable/**/*.{swift}'
t.dependency 'DZNEmptyDataSet', '~> 1.8.1'
t.dependency "LXFProtocolTool/AssociatedObjectStore"
t.dependency "LXFProtocolTool/Base"
t.dependency "LXFProtocolTool/LXFEquatable"
end
s.subspec 'RxEmptyDataSetable' do |t|
t.source_files = 'LXFProtocolTool/Classes/RxEmptyDataSetable/**/*.{swift}'
t.dependency 'RxCocoa', '>= 6'
t.dependency "LXFProtocolTool/EmptyDataSetable"
end
s.subspec 'AssociatedObjectStore' do |t|
t.source_files = 'LXFProtocolTool/Classes/AssociatedObjectStore/**/*.{swift}'
end
s.subspec 'FullScreenable' do |t|
t.source_files = 'LXFProtocolTool/Classes/FullScreenable/**/*.{swift}'
t.dependency "LXFProtocolTool/AssociatedObjectStore"
t.dependency "LXFProtocolTool/Base"
end
s.subspec 'LXFEquatable' do |t|
t.source_files = 'LXFProtocolTool/Classes/LXFEquatable/**/*.{swift}'
t.dependency "LXFProtocolTool/Base"
t.dependency "LXFProtocolTool/AssociatedObjectStore"
end
end