forked from tonyarnold/Differ
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDiffer.podspec
More file actions
26 lines (21 loc) · 1022 Bytes
/
Differ.podspec
File metadata and controls
26 lines (21 loc) · 1022 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
Pod::Spec.new do |s|
s.name = "Differ"
s.version = "1.0.2"
s.summary = "A very fast difference calculation library written in Swift."
s.homepage = "https://github.com/tonyarnold/Diff"
s.description = <<-DESC
Differ generates the differences between `Collection` instances (this includes Strings!).
It uses a fast algorithm `(O((N+M)*D))` to do this.
Also included are utilities for easily applying diffs and patches to `UICollectionView`/`UITableView`.
DESC
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.authors = {
"Tony Arnold" => "tony@thecocoabots.com"
}
s.source = { :git => "https://github.com/tonyarnold/Differ.git", :tag => "1.0.2" }
s.source_files = "Sources/Differ"
s.platforms = { :ios => "8.0", :osx => "10.10", :tvos => "9.0", :watchos => "3.0" }
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0' }
s.osx.exclude_files = "Sources/Differ/Diff+UIKit.swift"
s.watchos.exclude_files = "Sources/Differ/Diff+UIKit.swift"
end