[Add] ZJSDK 2.5.5.0
[CocoaPods.git] / Specs / 3 / 4 / f / Longinus / 1.1.9 / Longinus.podspec.json
blob26801baf5adb7accb197ded4ab3dbc57f238b23b
2   "name": "Longinus",
3   "version": "1.1.9",
4   "summary": "Longinus is a pure-Swift high-performance asynchronous web image loading and caching framework.",
5   "description": "Longinus is a pure-Swift high-performance asynchronous web image loading and caching framework.\n\n* Asynchronous image downloading and caching.\n* Preload images and cache them to disk for further showing.\n* Animated GIF support (dynamic buffer, lower memory usage).\n* Baseline/progressive/interlaced image decode support.\n* View extensions for UIImageView, UIButton, MKAnnotationView and CALayer to directly set an image from a URL.\n* Image loading category for UIImageView, UIButton and CALayer.\n* Built-in transition animation when setting images.(or you can set your custom image showing transion)\n* Image Transform after downloading supported: blur, round corner, resize, color tint, crop, rotate and more.\n* High performance memory and disk image cache. Use LRU algorithm to manage. For disk cache, it use file system and sqlite for better performance.\n* Use FIFO queue to handle image downloading operation.\n* Smooth sliding without UI lags. High performance image caching and decoding to avoid main thread blocked.",
6   "homepage": "https://github.com/KittenYang/Longinus",
7   "screenshots": "https://github.com/KittenYang/Longinus/raw/master/Assets/Logo.png",
8   "license": {
9     "type": "MIT",
10     "file": "LICENSE"
11   },
12   "authors": {
13     "KittenYang": "kittenyang@icloud.com"
14   },
15   "source": {
16     "git": "https://github.com/KittenYang/Longinus.git",
17     "tag": "1.1.9"
18   },
19   "social_media_url": "https://twitter.com/KittenYang",
20   "swift_versions": "5.0",
21   "platforms": {
22     "ios": "10.0"
23   },
24   "requires_arc": true,
25   "default_subspecs": "General",
26   "ios": {
27     "frameworks": [
28       "UIKit",
29       "Foundation"
30     ]
31   },
32   "subspecs": [
33     {
34       "name": "General",
35       "source_files": [
36         "Longinus/Classes/General/*.swift"
37       ],
38       "dependencies": {
39         "Longinus/Networking": [
41         ]
42       }
43     },
44     {
45       "name": "Cache",
46       "source_files": "Longinus/Classes/Cache/*.swift",
47       "dependencies": {
48         "Longinus/Utility": [
50         ]
51       }
52     },
53     {
54       "name": "ImageCode",
55       "source_files": "Longinus/Classes/ImageCode/*.swift",
56       "dependencies": {
57         "Longinus/Utility": [
59         ]
60       }
61     },
62     {
63       "name": "Networking",
64       "source_files": "Longinus/Classes/Networking/*.swift",
65       "dependencies": {
66         "Longinus/ImageCode": [
68         ],
69         "Longinus/Cache": [
71         ]
72       }
73     },
74     {
75       "name": "Utility",
76       "source_files": "Longinus/Classes/Utility/*.swift"
77     },
78     {
79       "name": "SwiftUI",
80       "source_files": "Longinus/Classes/SwiftUI/*.swift",
81       "dependencies": {
82         "Longinus/General": [
84         ]
85       }
86     }
87   ],
88   "swift_version": "5.0"