forked from RxSwiftCommunity/RxDataSources
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDifferentiator.podspec
More file actions
23 lines (18 loc) · 870 Bytes
/
Differentiator.podspec
File metadata and controls
23 lines (18 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "Differentiator"
s.version = "4.0.1"
s.summary = "Diff algorithm for UITableView and UICollectionView."
s.description = <<-DESC
Diff algorithm for UITableView and UICollectionView.
RxDataSources is powered by Differentiator.
DESC
s.homepage = "https://github.com/RxSwiftCommunity/RxDataSources"
s.license = 'MIT'
s.author = { "Krunoslav Zaher" => "krunoslav.zaher@gmail.com" }
s.source = { :git => "https://github.com/RxSwiftCommunity/RxDataSources.git", :tag => s.version.to_s }
s.requires_arc = true
s.swift_version = '5.0'
s.source_files = 'Sources/Differentiator/**/*.swift'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
end