-
Notifications
You must be signed in to change notification settings - Fork 185
Expand file tree
/
Copy pathUICollectionViewLeftAlignedLayout.podspec
More file actions
22 lines (20 loc) · 1.06 KB
/
UICollectionViewLeftAlignedLayout.podspec
File metadata and controls
22 lines (20 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
version = "1.0.2"
Pod::Spec.new do |s|
s.name = "UICollectionViewLeftAlignedLayout"
s.version = version
s.summary = "A layout for UICollectionView that aligns the cells to the left "
s.description = <<-DESC
A `UICollectionViewLayout` implementation that aligns the cells to the left.
It uses `UICollectionViewFlowLayout` under the hood.
DESC
s.homepage = "https://github.com/mokagio/UICollectionViewLeftAlignedLayout"
s.screenshots = "https://raw.githubusercontent.com/mokagio/UICollectionViewLeftAlignedLayout/master/screenshot.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Giovanni Lodi" => "giovanni.lodi42@gmail.com" }
s.social_media_url = "http://twitter.com/mokagio"
s.platform = :ios, "11.0"
s.source = { :git => "https://github.com/mokagio/UICollectionViewLeftAlignedLayout.git", :tag => version }
s.source_files = 'UICollectionViewLeftAlignedLayout/**/*.{h,m}'
s.framework = 'UIKit'
s.requires_arc = true
end