- Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCellViewModel.podspec
More file actions
Latest commit
27 lines (14 loc) · 817 Bytes
/
Copy pathCellViewModel.podspec
File metadata and controls
27 lines (14 loc) · 817 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
26
27
Pod::Spec.newdo |s|
s.name="CellViewModel"
s.version="1.8.0"
s.summary="CellViewModel is a protocol that includes logic for reuse, accessibility and dequeue"
s.description="Using CellViewModel to configure you UITableViewCell or UICollectionViewCell is just a one possible approach of work with UIKit's collections."
s.homepage="https://github.com/AntonPoltoratskyi/CellViewModel"
s.license={:type=>"MIT",:file=>"LICENSE"}
s.author="Anton Poltoratskyi"
s.platform=:ios,"9.0"
s.source={:git=>"https://github.com/AntonPoltoratskyi/CellViewModel.git",:tag=>"#{s.version}"}
s.source_files="CellViewModel/Sources","CellViewModel/Sources/**/*.{swift}"
s.framework="UIKit"
s.swift_versions=['5.0']
end