[Add] AlibabacloudMse20190531 6.13.0
[CocoaPods.git] / Specs / 5 / f / 6 / OptiDiff / 0.1.0 / OptiDiff.podspec.json
blobb1ad93cac25700cf50d657a271db3a9bde52b2c3
2   "name": "OptiDiff",
3   "version": "0.1.0",
4   "summary": "A library for fast calculating of optimal collection diffs.",
5   "description": "A library for calculating optimal collection diffs using an LIS-based algorithm with less than **O(n log₂ n)** worst case total time (approximately  **n log₂ n − n log₂log₂ n + O(n)**).\nThe result diff is a minimal required diff equivalent to the result of Myers algorithm (which has **O(n²)** complexity) used in Swift standard library.",
6   "homepage": "https://github.com/tarbayev/OptiDiff",
7   "license": {
8     "type": "Unlicense",
9     "file": "LICENSE.md"
10   },
11   "authors": {
12     "Nickolay Tarbayev": "tarbayev-n@yandex.ru"
13   },
14   "source": {
15     "git": "https://github.com/tarbayev/OptiDiff.git",
16     "tag": "0.1.0"
17   },
18   "platforms": {
19     "ios": "11.0"
20   },
21   "swift_versions": "5.3",
22   "testspecs": [
23     {
24       "name": "Tests",
25       "test_type": "unit",
26       "source_files": "Tests/*.swift"
27     },
28     {
29       "name": "UITests",
30       "test_type": "ui",
31       "source_files": "UITests/*.swift",
32       "requires_app_host": true,
33       "app_host_name": "OptiDiff/ExampleApp",
34       "dependencies": {
35         "OptiDiff/ExampleApp": [
37         ]
38       }
39     }
40   ],
41   "appspecs": [
42     {
43       "name": "ExampleApp",
44       "source_files": "ExampleApp/*.swift",
45       "resources": [
46         "ExampleApp/*.storyboard"
47       ],
48       "info_plist": {
49         "UIMainStoryboardFile": "Main"
50       }
51     }
52   ],
53   "subspecs": [
54     {
55       "name": "Diff",
56       "source_files": "Sources/Diff/**/*.swift"
57     },
58     {
59       "name": "UI",
60       "source_files": "Sources/UI/**/*.swift",
61       "dependencies": {
62         "OptiDiff/Diff": [
64         ]
65       },
66       "frameworks": "UIKit"
67     }
68   ],
69   "swift_version": "5.3"