-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathHeckelDiff.podspec
More file actions
19 lines (15 loc) · 861 Bytes
/
HeckelDiff.podspec
File metadata and controls
19 lines (15 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "HeckelDiff"
s.version = "0.2.4"
s.summary = "Pure Swift implementation of Paul Heckel's \"A Technique for Isolating Differences Between Files\""
s.description = "Given two collections, provides a very efficient set of steps to transform one into the other. Adds support for UITableView and UICollectionView batched updates."
s.homepage = "https://github.com/mcudich/HeckelDiff"
s.license = "MIT"
s.author = { "Matias Cudich" => "mcudich@gmail.com" }
s.source = { :git => "https://github.com/mcudich/HeckelDiff.git", :tag => s.version.to_s }
s.social_media_url = "https://twitter.com/mcudich"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.swift_version = '4.2'
s.source_files = "Source/**/*.{h,m,swift}"
end