forked from amirdew/CollectionViewPagingLayout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCollectionViewPagingLayout.podspec
More file actions
25 lines (18 loc) · 961 Bytes
/
CollectionViewPagingLayout.podspec
File metadata and controls
25 lines (18 loc) · 961 Bytes
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
Pod::Spec.new do |s|
s.name = "CollectionViewPagingLayout"
s.version = "1.0.0"
s.summary = "A simple but highly customizable layout for UICollectionView and SwiftUI."
s.description = <<-DESC
A simple but highly customizable UICollectionViewLayout for UICollectionView.
Simple SwiftUI views that let you make page-view effects.
DESC
s.homepage = "https://github.com/amirdew/CollectionViewPagingLayout"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Amir Khorsandi" => "khorsandi@me.com" }
s.source = { :git => "https://github.com/amirdew/CollectionViewPagingLayout.git", :tag => "#{s.version}" }
s.source_files = ["Lib/**/*.swift"]
s.swift_versions = ["5.4"]
s.ios.deployment_target = "10.0"
s.frameworks = "UIKit"
s.weak_frameworks = "SwiftUI", "Combine"
end