This repository was archived by the owner on May 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRKTableAdapter.podspec
More file actions
82 lines (63 loc) · 2.16 KB
/
RKTableAdapter.podspec
File metadata and controls
82 lines (63 loc) · 2.16 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#
# Be sure to run `pod lib lint RKTableAdapter.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'RKTableAdapter'
s.version = '0.1.13'
s.summary = 'Table Adapter'
s.homepage = 'https://github.com/DaskiOFF/RKTableAdapter'
s.documentation_url = 'https://daskioff.github.io/RKTableAdapter/'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'DaskiOFF' => 'waydeveloper@gmail.com' }
s.source = { :git => 'https://github.com/DaskiOFF/RKTableAdapter.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.source_files = 'Sources/**/*'
s.frameworks = 'UIKit'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
Table and Collection Adapters
0.1.13
Add callback TrailingSwipeActionsConfigurationForRow (iOS 11+);
Add callback WillDisplayCell
Add callback DidEndDisplayingCell
0.1.12
Update estimated height for row and height for row
Fix batch updater
0.1.11
Replace semaphore to NSLock (fix random deinit crash)
0.1.10
Refactoring
Update table cell without reloadRow if possible
Delete + Insert to the same indexPath is no longer converted to an update (https://github.com/Instagram/IGListKit/issues/297)
0.1.9
Refactoring
Fix batch update
0.1.8
Add Collection Adapter
Update Example
0.1.7
Fix switch cell animation
0.1.6
Small fixes
0.1.5
Small fixes
0.1.4
Small fixes
0.1.3
fix CellCalculator and CellLayout (add open and public)
0.1.2
Add CellCalculator and CellLayout
0.1.1
Add support DeepDiff and batch update
0.1.0
Init
DESC
end