-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSEUICollectionViewLayout.podspec
More file actions
26 lines (20 loc) · 1.13 KB
/
SEUICollectionViewLayout.podspec
File metadata and controls
26 lines (20 loc) · 1.13 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|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# These will help people to find your library, and whilst it
# can feel like a chore to fill in it's definitely to your advantage. The
# summary should be tweet-length, and the description more in depth.
#
s.name = "SEUICollectionViewLayout"
s.version = "0.1.0"
s.summary = "A base collection view layout that simplifies drawing/animation of sup/decoration views."
s.homepage = "http://github.com/bnickel/SEUICollectionViewLayout"
s.license = "MIT"
s.author = { "Brian Nickel" => "bnickel@stackexchange.com" }
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/bnickel/SEUICollectionViewLayout.git", :tag => "v#{s.version}" }
s.source_files = "SEUICollectionViewLayout/SEUICollectionViewLayout"
s.public_header_files = "SEUICollectionViewLayout/SEUICollectionViewLayout/*.h"
s.framework = "UIKit"
s.requires_arc = true
end