-
Notifications
You must be signed in to change notification settings - Fork 4
/
AutoLayoutCells.podspec
31 lines (26 loc) · 1.22 KB
/
AutoLayoutCells.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
Pod::Spec.new do |s|
s.platform = :ios
s.ios.deployment_target = '7.0'
s.name = "AutoLayoutCells"
s.version = "0.12.0"
s.summary = "AutoLayoutCells makes working with dynamic table view cells easy."
s.homepage = "https://github.com/JRG-Developer/AutoLayoutCells"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Joshua Greene" => "[email protected]" }
s.source = { :git => "https://github.com/JRG-Developer/AutoLayoutCells.git",
:tag => "#{s.version}"}
s.requires_arc = true
s.framework = "UIKit"
s.subspec 'SharedCategories' do |ss|
ss.dependency 'UIImageView+ALActivityIndicatorView', '~> 1.0'
ss.xcconfig = { "FRAMEWORK_SEARCH_PATHS" => "$(PODS_ROOT)/UIImageView+ALActivityIndicatorView" }
ss.source_files = "AutoLayoutCells/SharedCategories/*{h,m}"
end
s.subspec 'TableViewCells' do |ss|
ss.dependency 'AutoLayoutCells/SharedCategories'
ss.dependency 'ALLabel', '~> 2.0'
ss.dependency 'AutoLayoutTextViews', '~> 1.1'
ss.resource_bundles = {'ALTableViewCellsBundle' => ['AutoLayoutCells/TableViewCells/ResourcesBundle/*']}
ss.source_files = "AutoLayoutCells/TableViewCells/*.{h,m}"
end
end