[Add] AlibabacloudIQS20241111 1.2.0
[CocoaPods.git] / Specs / a / 3 / d / BigDiffer / 0.4.0 / BigDiffer.podspec.json
blobf64b0c5028ed40a724f9f98be3668f218394a12a
2   "name": "BigDiffer",
3   "version": "0.4.0",
4   "summary": "diff & patch for multi-section UITableView with large number of rows (changes between 0~5000)",
5   "description": "* Multi section diff & patch for UITableView\n* Fast linear complexity diff algorithm a.k.a. Heckel, by making use of ListDiff\n* Optimize diff with some heuristics for large number of rows\n* Skip diffing for currently invisible sections (use reload)\n  * Section-wise diff for currently (partially or completely) visible sections\n  * Skip applying diff when many deletions detected (> 300), for each section",
6   "homepage": "https://github.com/banjun/BigDiffer",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "banjun": "banjun@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/banjun/BigDiffer.git",
16     "tag": "0.4.0"
17   },
18   "social_media_url": "https://twitter.com/banjun",
19   "platforms": {
20     "ios": "10.0"
21   },
22   "swift_version": "4.1",
23   "default_subspecs": "BigDiffer",
24   "subspecs": [
25     {
26       "name": "Core",
27       "source_files": "BigDiffer/Classes/Core/**/*.swift"
28     },
29     {
30       "name": "BigDiffer",
31       "source_files": "BigDiffer/Classes/BigDiffer/**/*.swift",
32       "dependencies": {
33         "BigDiffer/Core": [
35         ],
36         "ListDiff": [
38         ]
39       }
40     },
41     {
42       "name": "Differ",
43       "source_files": "BigDiffer/Classes/Differ/**/*.swift",
44       "dependencies": {
45         "BigDiffer/Core": [
47         ],
48         "Differ": [
50         ]
51       }
52     },
53     {
54       "name": "HeckelDiff",
55       "source_files": "BigDiffer/Classes/HeckelDiff/**/*.swift",
56       "dependencies": {
57         "BigDiffer/Core": [
59         ],
60         "HeckelDiff": [
62         ]
63       }
64     },
65     {
66       "name": "DeepDiff",
67       "source_files": "BigDiffer/Classes/DeepDiff/**/*.swift",
68       "dependencies": {
69         "BigDiffer/Core": [
71         ],
72         "DeepDiff": [
74         ]
75       }
76     }
77   ]