-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathSeparatorCollectionViewFlowLayout.podspec
More file actions
executable file
·26 lines (24 loc) · 1.1 KB
/
SeparatorCollectionViewFlowLayout.podspec
File metadata and controls
executable file
·26 lines (24 loc) · 1.1 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
Pod::Spec.new do |s|
s.name = "SeparatorCollectionViewFlowLayout"
s.version = "1.1.2"
s.summary = "A UICollectionViewFlowLayout implementation to allow separators between cells"
s.description = <<-EOS
A UICollectionViewFlowLayout implementation to allow separators between cells
with a custom separator color and width.
Instructions on how to use it are in
[the README](https://github.com/ivanbruel/SeparatorCollectionViewFlowLayout).
EOS
s.homepage = "https://github.com/ivanbruel/SeparatorCollectionViewFlowLayout"
s.license = { :type => "MIT", :file => "License" }
s.author = { "Ivan Bruel" => "ivan.bruel@gmail.com" }
s.social_media_url = "http://twitter.com/ivanbruel"
s.ios.deployment_target = '8.0'
s.source = { :git => "https://github.com/ivanbruel/SeparatorCollectionViewFlowLayout.git", :tag => s.version }
s.default_subspec = "Core"
s.subspec "Core" do |ss|
ss.source_files = "Source/*.swift"
ss.framework = "Foundation"
ss.framework = "UIKit"
ss.dependency "UICollectionViewLeftAlignedLayout", "~> 1.0.1"
end
end