Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCheckmarkCollectionViewCell.podspec
More file actions
Latest commit
31 lines (22 loc) · 1.21 KB
/
Copy pathCheckmarkCollectionViewCell.podspec
File metadata and controls
31 lines (22 loc) · 1.21 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
Pod::Spec.newdo |s|
s.name="CheckmarkCollectionViewCell"
s.version="1.1.0"
s.summary="UICollectionViewCell with checkbox when it isSelected and empty circle when not - like Photos.app Select mode."
s.homepage="https://github.com/yonat/CheckmarkCollectionViewCell"
s.screenshots="https://raw.githubusercontent.com/yonat/CheckmarkCollectionViewCell/master/Screenshots/CheckmarkCollectionViewCell.png"
s.license={:type=>"MIT",:file=>"LICENSE.txt"}
s.author={"Yonat Sharon"=>"yonat@ootips.org"}
s.social_media_url="https://twitter.com/yonatsharon"
s.swift_version='4.2'
s.swift_versions=['4.2','5.0']
s.platform=:ios,"9.3"
s.requires_arc=true
s.source={:git=>"https://github.com/yonat/CheckmarkCollectionViewCell.git",:tag=>s.version}
s.source_files="Sources/*.swift"
s.resource_bundles={s.name=>['Sources/PrivacyInfo.xcprivacy']}
s.subspec'Resources'do |resources|
resources.resource_bundle={s.name=>'Sources/*.png'}
end
s.dependency'SweeterSwift'
s.pod_target_xcconfig={'LD_RUNPATH_SEARCH_PATHS'=>'$(FRAMEWORK_SEARCH_PATHS)'}# fix Interface Builder render error
end