- Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathCollectionViewWaterfallLayout.podspec
More file actions
Latest commit
18 lines (18 loc) · 1.18 KB
/
Copy pathCollectionViewWaterfallLayout.podspec
File metadata and controls
18 lines (18 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.newdo |s|
s.name='CollectionViewWaterfallLayout'
s.version='0.5.0'
s.summary='Pinterest inspired layout for UICollectionViews written in Swift'
s.description=<<-DESC
Custom UICollectionView layout inspired by Pinterest. It can layout multiple columns of items with different heights to create dynamic flowing cells.
DESC
s.homepage='https://github.com/ecerney/CollectionViewWaterfallLayout'
s.screenshots='https://raw.githubusercontent.com/ecerney/CollectionViewWaterfallLayout/master/Screenshots/RealWorldExample.png','https://raw.githubusercontent.com/ecerney/CollectionViewWaterfallLayout/master/Screenshots/DemoExample.png'
s.license={:type=>'MIT',:file=>'LICENSE'}
s.author={'Eric Cerney'=>'ecerney@gmail.com'}
s.source={:git=>'https://github.com/ecerney/CollectionViewWaterfallLayout.git',:tag=>s.version.to_s}
s.social_media_url='https://twitter.com/ecerney'
s.ios.deployment_target='8.0'
s.swift_versions='5.0'
s.source_files='CollectionViewWaterfallLayout.swift'
s.frameworks='UIKit'
end