-
Notifications
You must be signed in to change notification settings - Fork 13
/
UICollectionViewSplitLayout.podspec
30 lines (23 loc) · 1.32 KB
/
UICollectionViewSplitLayout.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
#
# Be sure to run `pod lib lint StringStylizer.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "UICollectionViewSplitLayout"
s.version = "1.0.1"
s.summary = "UICollectionViewSplitLayout makes collection view more responsive."
s.description = <<-DESC
UICollectionViewSplitLayout is a subclass of UICollectionViewLayout. It divides sections into one or two column.
Collection view has "Section" which organizes item collection. UICollectionViewFlowLayout layouts them from top to bottom.
On the other hands, UICollectionViewSplitLayout divides sections into two columns. You can dynamically update the width of them and which column each section is on.
DESC
s.homepage = "https://github.com/yahoojapan/UICollectionViewSplitLayout"
s.license = 'MIT'
s.author = { "Kazuhiro Hayashi" => "[email protected]" }
s.source = { :git => "https://github.com/yahoojapan/UICollectionViewSplitLayout.git", :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.source_files = "Sources/UICollectionViewSplitLayout/*.swift"
end