-
-
Notifications
You must be signed in to change notification settings - Fork 693
Expand file tree
/
Copy pathCHTCollectionViewWaterfallLayout.podspec
More file actions
27 lines (23 loc) · 973 Bytes
/
CHTCollectionViewWaterfallLayout.podspec
File metadata and controls
27 lines (23 loc) · 973 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
Pod::Spec.new do |s|
s.name = "CHTCollectionViewWaterfallLayout"
s.version = "0.9.10"
s.summary = "The waterfall (i.e., Pinterest-like) layout for UICollectionView."
s.homepage = "https://github.com/chiahsien/CHTCollectionViewWaterfallLayout"
s.screenshots = "https://raw.github.com/chiahsien/UICollectionViewWaterfallLayout/master/Screenshots/2-columns.png"
s.license = 'MIT'
s.author = { "Nelson" => "chiahsien@gmail.com" }
s.source = { :git => "https://github.com/chiahsien/CHTCollectionViewWaterfallLayout.git", :tag => "#{s.version}" }
s.requires_arc = true
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.default_subspec = 'Swift'
s.subspec 'ObjC' do |ss|
ss.ios.deployment_target = '9.0'
ss.source_files = 'Source/*.{h,m}'
end
s.swift_version = '4.2'
s.subspec 'Swift' do |ss|
ss.ios.deployment_target = '9.0'
ss.source_files = 'Source/*.swift'
end
end