-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathLNZCollectionLayouts.podspec
29 lines (22 loc) · 1023 Bytes
/
LNZCollectionLayouts.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
Pod::Spec.new do |s|
s.platform = :ios
s.version = "1.2.2"
s.ios.deployment_target = '8.0'
s.name = "LNZCollectionLayouts"
s.summary = "A swift collection of UICollectionViewLayout subclasses."
s.swift_version = '4.2'
s.description = <<-DESC
LNZCollectionLayouts is a collection of UICollectionViewLayout subclasses ready to be used to make your collection views custom and more interesting from UX point of view.
The layouts currently included are a snap to center layout, an infinite scroll layout and a carousel layout.
DESC
s.requires_arc = true
s.license = { :type => "MIT" }
s.homepage = "https://www.pfrpg.net"
s.author = { "Giuseppe Lanza" => "gringoire986@gmail.com" }
s.source = {
:git => "https://github.com/gringoireDM/LNZCollectionLayouts.git",
:tag => "v1.2.2"
}
s.framework = "UIKit"
s.source_files = "LNZCollectionLayouts/Layouts/**/*.{swift, h}"
end