Uh oh!
There was an error while loading. Please reload this page.
forked from wokalski/Diff.swift
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDiff.podspec
More file actions
Latest commit
22 lines (17 loc) · 973 Bytes
/
Copy pathDiff.podspec
File metadata and controls
22 lines (17 loc) · 973 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.newdo |s|
s.name="Diff"
s.version="0.5.2"
s.summary="The fastest Diff library in Swift. Includes UICollectionView/UITableView utils."
s.homepage="https://github.com/wokalski/Diff.swift"
s.description=<<-DESC
This library generates differences between any two Collections (and Strings). It uses a fast algorithm (O((N+M)*D)). It also includes utilities for UICollectionView/UITableView.
DESC
s.license={:type=>"MIT",:file=>"LICENSE"}
s.author={"Wojtek Czekalski"=>"me@wczekalski.com"}
s.social_media_url="https://twitter.com/wokalski"
s.platforms={:ios=>"8.0",:osx=>"10.10",:tvos=>"9.0",:watchos=>"3.0"}
s.osx.exclude_files="Sources/Diff+UIKit.swift"
s.watchos.exclude_files="Sources/Diff+UIKit.swift"
s.source={:git=>"https://github.com/wokalski/Diff.swift.git",:tag=>"0.5.2"}
s.source_files="Sources"
end