forked from lucas34/SwiftQueue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftQueue.podspec
26 lines (20 loc) · 911 Bytes
/
SwiftQueue.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Pod::Spec.new do |s|
s.name = "SwiftQueue"
s.version = "3.2.0"
s.summary = "SwiftQueue"
s.description = "Job Scheduler for IOS with Concurrent run, failure/retry, persistence, repeat, delay and more"
s.homepage = "https://github.com/lucas34/SwiftQueue"
s.license = 'MIT'
s.author = { "Lucas Nelaupe" => "[email protected]" }
s.source = { :git => "https://github.com/lucas34/SwiftQueue.git", :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = "8.0"
s.tvos.deployment_target= "9.0"
s.watchos.deployment_target = "2.0"
s.osx.deployment_target= "10.10"
s.requires_arc = true
s.source_files = 'Sources/SwiftQueue/**.swift'
s.ios.dependency 'ReachabilitySwift', '~> 4.3'
s.tvos.dependency 'ReachabilitySwift', '~> 4.3'
s.osx.dependency 'ReachabilitySwift', '~> 4.3'
end