forked from futuredapp/CellKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCellKit.podspec
30 lines (28 loc) · 1.16 KB
/
CellKit.podspec
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.new do |s|
s.name = "CellKit"
s.version = "0.3"
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/thefuntasty/CellKit"
s.license = { type: "MIT", file: "LICENSE" }
s.author = { "Petr Zvoníček": "[email protected]" }
s.social_media_url = "https://twitter.com/TheFuntasty"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.swift_versions = ["4.2", "5.0"]
s.source = { git: "https://github.com/thefuntasty/CellKit.git", tag: s.version.to_s }
s.frameworks = ["Foundation", "UIKit"]
s.default_subspec = "Core"
s.subspec "Core" do |core|
core.source_files = "Sources/*"
end
s.subspec "Equatable" do |equatable|
equatable.dependency "CellKit/Core"
equatable.source_files = "Sources/EquatableDataSource/*"
equatable.dependency "Dwifft", "~> 0.9"
end
end