-
Notifications
You must be signed in to change notification settings - Fork 0
/
RFDelegateChain.podspec
81 lines (71 loc) · 2.99 KB
/
RFDelegateChain.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
73
74
75
76
77
78
79
80
81
Pod::Spec.new do |ss|
ss.name = 'RFDelegateChain'
ss.version = '2.1.0'
ss.summary = 'DelegateChain allows the implementation of delegation to be distributed across multiple objects.'
ss.homepage = 'https://github.com/RFUI/RFDelegateChain'
ss.license = { :type => 'MIT' }
ss.authors = { 'BB9z' => '[email protected]' }
ss.source = {
:git => 'https://github.com/RFUI/RFDelegateChain.git',
:tag => ss.version.to_s
}
ss.osx.deployment_target = '10.8'
ss.ios.deployment_target = '9.0'
ss.tvos.deployment_target = '9.0'
ss.watchos.deployment_target = '2.0'
ss.requires_arc = true
ss.subspec 'Chain' do |s|
s.dependency 'RFKit/Runtime', '>=1.7.1'
s.dependency 'RFInitializing', '>=1.1'
s.source_files = 'Sources/RFDelegateChain/*.{h,m}'
s.public_header_files = 'Sources/RFDelegateChain/*.h'
end
ss.subspec 'UICollectionViewDataSource' do |s|
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.dependency 'RFDelegateChain/Chain'
s.source_files = 'Sources/UIKit/UICollectionViewDataSourceChain.{h,m}'
s.public_header_files = 'Sources/UIKit/UICollectionViewDataSourceChain.h'
end
ss.subspec 'UICollectionViewDelegate' do |s|
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.dependency 'RFDelegateChain/UIScrollViewDelegate'
s.source_files = 'Sources/UIKit/UICollectionViewDelegateChain.{h,m}'
s.public_header_files = 'Sources/UIKit/UICollectionViewDelegateChain.h'
end
ss.subspec 'UICollectionViewDelegateFlowLayout' do |s|
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.dependency 'RFDelegateChain/UICollectionViewDelegate'
s.source_files = 'Sources/UIKit/UICollectionViewDelegateFlowLayoutChain.{h,m}'
s.public_header_files = 'Sources/UIKit/UICollectionViewDelegateFlowLayoutChain.h'
end
ss.subspec 'UIScrollViewDelegate' do |s|
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.dependency 'RFDelegateChain/Chain'
s.source_files = 'Sources/UIKit/UIScrollViewDelegateChain.{h,m}'
s.public_header_files = 'Sources/UIKit/UIScrollViewDelegateChain.h'
end
ss.subspec 'UISearchBarDelegate' do |s|
s.ios.deployment_target = '9.0'
s.dependency 'RFDelegateChain/Chain'
s.source_files = 'Sources/UIKit/UISearchBarDelegateChain.{h,m}'
s.public_header_files = 'Sources/UIKit/UISearchBarDelegateChain.h'
end
ss.subspec 'UITextFieldDelegate' do |s|
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.dependency 'RFDelegateChain/Chain'
s.source_files = 'Sources/UIKit/UITextFiledDelegateChain.{h,m}'
s.public_header_files = 'Sources/UIKit/UITextFiledDelegateChain.h'
end
ss.subspec 'UITextViewDelegate' do |s|
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.dependency 'RFDelegateChain/Chain'
s.source_files = 'Sources/UIKit/UITextViewDelegateChain.{h,m}'
s.public_header_files = 'Sources/UIKit/UITextViewDelegateChain.h'
end
end