Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJomloCollectionView.podspec
More file actions
Latest commit
32 lines (26 loc) · 1.28 KB
/
Copy pathJomloCollectionView.podspec
File metadata and controls
32 lines (26 loc) · 1.28 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
27
28
29
30
31
32
Pod::Spec.newdo |s|
s.name='JomloCollectionView'
s.version='1.0.0'
s.swift_version='6.0'
s.summary='A declarative, section-driven UICollectionView compositional layout engine.'
s.description=<<~DESC
JomloCollectionView is a protocol-oriented UICollectionView compositional layout engine
for iOS and tvOS. Build complex, streaming-service-style collection views with minimal
boilerplate. Features include built-in layout presets (hero, shelf, grid, list), diffable
data source integration, self-configuring cells, declarative animations, and full Swift 6
strict concurrency support.
DESC
s.homepage='https://github.com/setoelkahfi/JomloCollectionView'
s.license={type: 'MIT',file: 'LICENSE'}
s.author={'Seto Elkahfi'=>'setoelkahfi@gmail.com'}
s.source={git: 'https://github.com/setoelkahfi/JomloCollectionView.git',tag: s.version.to_s}
s.social_media_url='https://twitter.com/setoelkahfi'
s.ios.deployment_target='17.0'
s.tvos.deployment_target='17.0'
s.source_files='Sources/JomloCollectionView/**/*.swift'
s.frameworks='UIKit'
s.pod_target_xcconfig={
'SWIFT_VERSION'=>'6.0',
'SWIFT_STRICT_CONCURRENCY'=>'complete'
}
end