forked from wokalski/Diff.swift
-
Notifications
You must be signed in to change notification settings - Fork 74
/
Differ.podspec
39 lines (33 loc) · 1.21 KB
/
Differ.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
31
32
33
34
35
36
37
38
39
Pod::Spec.new do |s|
s.name = "Differ"
s.version = "1.4.6"
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" => "[email protected]"
}
s.source = { :git => "https://github.com/tonyarnold/Differ.git", :tag => "1.4.6" }
s.source_files = "Sources/Differ"
s.platforms = { :ios => "9.0", :osx => "10.12", :tvos => "9.0", :watchos => "4.0" }
s.swift_versions = ['5.4']
s.ios.exclude_files = [
"Sources/Differ/Diff+AppKit.swift"
]
s.osx.exclude_files = [
"Sources/Differ/Diff+UIKit.swift"
]
s.tvos.exclude_files = [
"Sources/Differ/Diff+AppKit.swift"
]
s.watchos.exclude_files = [
"Sources/Differ/Diff+UIKit.swift",
"Sources/Differ/Diff+AppKit.swift",
"Sources/Differ/NestedBatchUpdate.swift"
]
end