-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIGTableViewEstimatedHeightCache.podspec
More file actions
32 lines (28 loc) · 1.37 KB
/
IGTableViewEstimatedHeightCache.podspec
File metadata and controls
32 lines (28 loc) · 1.37 KB
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 |s|
s.name = 'IGTableViewEstimatedHeightCache'
s.version = '0.3.0'
s.summary = 'Simple solution for adding estimated height cache to table view controller'
s.description = <<-DESC
Simple solution for adding estimated height cache to table view controller
Based on StackOverflow.com answer (http://stackoverflow.com/a/26371697/40444) by Kai Burghardt (http://stackoverflow.com/users/1978096/kai-burghardt)
DESC
s.homepage = 'https://github.com/IndieGoGo/IGTableViewEstimatedHeightCache'
s.license = 'MIT'
s.author = {
'Indiegogo' => 'tech+gogopair@indiegogo.com',
'janj' => 'jan.jirout@indiegogo.com',
'glentregoning' => 'glen.tregoning@indiegogo.com',
'paulz' => 'paul@indiegogo.com'
}
s.source = { :git => 'https://github.com/IndieGoGo/IGTableViewEstimatedHeightCache.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/Indiegogo'
s.platform = :ios, '7.0'
s.requires_arc = true
s.default_subspec = 'IGTableViewEstimatedHeightCache'
s.subspec 'IGTableViewEstimatedHeightCache' do |sp|
sp.source_files = 'Pod/Classes/UITableViewController+IGTableViewEstimatedHeightCache.*'
end
s.subspec 'SimpleMagic' do |sp|
sp.source_files = 'Pod/Classes/*'
end
end