forked from bealex/AwesomeTableAnimationCalculator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAwesomeTableAnimationCalculator.podspec
More file actions
31 lines (23 loc) · 1.62 KB
/
AwesomeTableAnimationCalculator.podspec
File metadata and controls
31 lines (23 loc) · 1.62 KB
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
Pod::Spec.new do |s|
s.name = "AwesomeTableAnimationCalculator"
s.version = "0.9.13"
s.summary = "This code helps to detect changed (add, move, delete, refresh) if cell and section indexes for animatable updating Collection/Table view"
s.license = { :type => "MIT", :file => "LICENSE" }
s.description = <<-DESC
There are times when you need to determine what was changed in a table (collection) model
to update it with animations. It can be even more complex task when sections are involved.
Awesome Table Animation Calculator provides simple interface for this task. It holds
data model for the table and can calculate animatable difference for some changes (and
apply them to the UICollectionView/UITableView afterwards).
DESC
s.homepage = "https://github.com/bealex/AwesomeTableAnimationCalculator"
s.screenshots = "https://raw.githubusercontent.com/bealex/AwesomeTableAnimationCalculator/master/Images/TableAnimationExample.gif"
s.author = { "Alexander Babaev" => "alex@jdnevnik.com" }
s.social_media_url = "http://twitter.com/bealex"
s.platform = :ios, "8.0"
# need to test with OS X, watchOS, tvOS, etc.
s.source = { :git => "https://github.com/bealex/AwesomeTableAnimationCalculator.git", :tag => "v0.9.13" }
s.source_files = "Code/ATableAnimation/**/*.swift"
s.exclude_files = "Code/Example", "Resources", "ATableAnimationCalculator.xcodeproj/**"
s.module_name = 'AwesomeTableAnimationCalculator'
end