-
Notifications
You must be signed in to change notification settings - Fork 0
/
Alister.podspec
33 lines (25 loc) · 1.09 KB
/
Alister.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
Pod::Spec.new do |s|
s.name = 'Alister'
s.version = '0.1.0'
s.summary = 'Table Helper'
s.description = 'Table and Collection Helper'
s.homepage = 'https://github.com/oks/Alister'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Oksana Kovalchuk' => '[email protected]' }
s.source = { :git => 'https://github.com/oks/Alister.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/oks_ios'
s.requires_arc = true
s.ios.deployment_target = '9.0'
s.subspec 'ANKeyboardHandler' do |sp|
sp.source_files = 'Alister/ANKeyboardHandler'
end
s.subspec 'ANStorage' do |sp|
sp.source_files = 'Alister/ANStorage/**/*.{h,m}', 'Alister/ANStorage/**/**/*.{h,m}', 'Alister/ANStorage/**/**/**/*.{h,m}'
end
s.subspec 'ANListController' do |sp|
sp.source_files = 'Alister/ANListController/**/*.{h,m}'
end
s.subspec 'ANPrototypingUIKit' do |sp|
sp.source_files = 'Alister/ANPrototypingUIKit/**/*.{h,m}'
end
end