Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCellKit.podspec
More file actions
Latest commit
30 lines (28 loc) · 1.18 KB
/
Copy pathCellKit.podspec
File metadata and controls
30 lines (28 loc) · 1.18 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
Pod::Spec.newdo |s|
s.name="CellKit"
s.version="0.8.1"
s.summary="Table View and Collection View data source wrapper"
s.description=<<-DESC
Generic abstraction over table/collection data source
with automatic cell registration of
cell models and automatic animations using diffs.
DESC
s.homepage="https://github.com/futuredapp/CellKit"
s.license={type: "MIT",file: "LICENSE"}
s.author={"Matěj K. Jirásek": "matej.jirasek@futured.app","Petr Zvoníček": "zvonicek@gmail.com"}
s.social_media_url="https://twitter.com/Futuredapps"
s.ios.deployment_target="9.0"
s.tvos.deployment_target="9.0"
s.swift_versions=["4.2","5.0","5.1"]
s.source={git: "https://github.com/futuredapp/CellKit.git",tag: s.version.to_s}
s.frameworks=["Foundation","UIKit"]
s.default_subspec="Core"
s.subspec"Core"do |ss|
ss.source_files="Sources/CellKit/*"
end
s.subspec"Diffable"do |ss|
ss.dependency"CellKit/Core"
ss.source_files="Sources/DiffableCellKit/*"
ss.dependency"DifferenceKit","~> 1.0"
end
end