[Add] ZJSDK 2.5.4.14
[CocoaPods.git] / Specs / 5 / 9 / f / DifferenceKit / 1.0.0 / DifferenceKit.podspec.json
blob25c6149374c1de9b396dcf64ce820700da1980e4
2   "name": "DifferenceKit",
3   "version": "1.0.0",
4   "authors": {
5     "ra1028": "r.fe51028.r@gmail.com"
6   },
7   "homepage": "https://github.com/ra1028/DifferenceKit",
8   "documentation_url": "https://ra1028.github.io/DifferenceKit",
9   "summary": "A fast and flexible O(n) difference algorithm framework for Swift collection.",
10   "description": "A fast and flexible O(n) difference algorithm framework for Swift collection.\nThe algorithm is optimized based on the Paul Heckel's algorithm.",
11   "source": {
12     "git": "https://github.com/ra1028/DifferenceKit.git",
13     "tag": "1.0.0"
14   },
15   "license": {
16     "type": "MIT",
17     "file": "LICENSE"
18   },
19   "requires_arc": true,
20   "default_subspecs": [
21     "Core",
22     "UIKitExtension"
23   ],
24   "platforms": {
25     "ios": "9.0",
26     "tvos": "9.0",
27     "osx": "10.9",
28     "watchos": "2.0"
29   },
30   "subspecs": [
31     {
32       "name": "Core",
33       "source_files": "Sources/*.swift"
34     },
35     {
36       "name": "UIKitExtension",
37       "dependencies": {
38         "DifferenceKit/Core": [
40         ]
41       },
42       "ios": {
43         "source_files": "Sources/Extensions/UIKitExtension.swift",
44         "frameworks": "UIKit"
45       },
46       "tvos": {
47         "source_files": "Sources/Extensions/UIKitExtension.swift",
48         "frameworks": "UIKit"
49       }
50     },
51     {
52       "name": "AppKitExtension",
53       "dependencies": {
54         "DifferenceKit/Core": [
56         ]
57       },
58       "osx": {
59         "source_files": "Sources/Extensions/AppKitExtension.swift",
60         "frameworks": "AppKit"
61       }
62     }
63   ]