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
22 lines (17 loc) · 841 Bytes
/
Differentiator.podspec
File metadata and controls
22 lines (17 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "Differentiator"
s.version = "3.2.0"
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.source_files = 'Sources/Differentiator/**/*.swift'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
end