-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathRGListKit.podspec
More file actions
32 lines (28 loc) · 1022 Bytes
/
RGListKit.podspec
File metadata and controls
32 lines (28 loc) · 1022 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
29
30
31
32
Pod::Spec.new do |spec|
spec.name = 'RGListKit'
spec.version = '1.0'
spec.summary = 'RGListKit - the missing gap between UITableView & UICollectionView!'
spec.author = {
'Ritesh Gupta' => 'rg.riteshh@gmail.com'
}
spec.license = 'MIT'
spec.homepage = 'https://github.com/riteshhgupta/RGListKit'
spec.source = {
:git => 'https://github.com/riteshhgupta/RGListKit.git',
:tag => '1.0'
}
spec.ios.deployment_target = "9.0"
spec.requires_arc = true
spec.subspec 'Core' do |core|
core.dependency 'ProtoKit', '~> 1.2'
core.source_files = 'Source/**/*.swift', 'Source/**/*.xib'
core.exclude_files = 'Source/Reactive/*.swift'
end
spec.subspec 'ReactiveSwift' do |reactiveswift|
reactiveswift.dependency 'RGListKit/Core'
reactiveswift.dependency 'ReactiveSwift', '~> 3.0'
reactiveswift.dependency 'ReactiveCocoa', '~> 7.0'
reactiveswift.source_files = 'Source/**/*.swift'
end
spec.default_subspec = 'Core'
end