[Add] TensorFlowLiteObjC 0.0.1-nightly.20241221
[CocoaPods.git] / Specs / 5 / 3 / 1 / JobQueue / 0.0.30 / JobQueue.podspec.json
blob49fd36b4da4d953f94b35b32e0c2c1857683b14e
2   "name": "JobQueue",
3   "version": "0.0.30",
4   "summary": "A persistent and flexible job queue for Swift applications",
5   "description": "JobQueue is a persistent job queue with a simple API that does not depend on `Operation`/`OperationQueue`, is storage agnostic, supports for manual execution order, per job type concurrency limits, delayed jobs, and more.",
6   "homepage": "https://github.com/Tundaware/JobQueue",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "George Cox": "george@tundaware.com"
13   },
14   "social_media_url": "https://twitter.com/Tundaware",
15   "source": {
16     "git": "https://github.com/Tundaware/JobQueue.git",
17     "tag": "0.0.30"
18   },
19   "swift_versions": "5.1",
20   "platforms": {
21     "ios": "11.0",
22     "osx": "10.13"
23   },
24   "dependencies": {
25     "ReactiveSwift": [
26       "~> 6.2.0"
27     ]
28   },
29   "subspecs": [
30     {
31       "name": "Core",
32       "source_files": "Sources/Core/**/*.swift"
33     },
34     {
35       "name": "Queue",
36       "source_files": "Sources/Queue/**/*.swift",
37       "dependencies": {
38         "JobQueue/Core": [
40         ]
41       }
42     },
43     {
44       "name": "Storage",
45       "subspecs": [
46         {
47           "name": "InMemory",
48           "source_files": "Sources/Storage/InMemory/**/*.swift",
49           "dependencies": {
50             "JobQueue/Core": [
52             ]
53           }
54         },
55         {
56           "name": "CoreData",
57           "source_files": "Sources/Storage/CoreData/**/*.swift",
58           "dependencies": {
59             "JobQueue/Core": [
61             ]
62           }
63         },
64         {
65           "name": "CouchbaseLite",
66           "source_files": "Sources/Storage/CouchbaseLite/**/*.swift",
67           "dependencies": {
68             "JobQueue/Core": [
70             ],
71             "CouchbaseLite-Swift": [
72               "~> 2.7.0"
73             ]
74           }
75         }
76       ]
77     }
78   ],
79   "swift_version": "5.1"