forked from icanzilb/TaskQueue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskQueue.podspec
30 lines (26 loc) · 1.52 KB
/
TaskQueue.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
27
28
29
30
#
# Be sure to run `pod lib lint TaskQueue.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "TaskQueue"
s.version = "0.9.10"
s.summary = "Task management made easy, bounce tasks between main thread and background threads like a pro"
s.description = <<-DESC
TaskQueue is a Swift library which allows you to schedule tasks once and then let the queue execute them in a synchronous matter. The great thing about TaskQueue is that you get to decide on which GCD queue each of your tasks should execute beforehand and leave TaskQueue to do switching of queues as it goes.
Even if your tasks are asynchronous like fetching location, downloading files, etc. TaskQueue will wait until they are finished before going on with the next task.
DESC
s.homepage = "https://github.com/icanzilb/TaskQueue"
s.screenshots = "https://raw.githubusercontent.com/icanzilb/TaskQueue/master/etc/readme_schema.png"
s.license = 'MIT'
s.author = { "Marin Todorov" => "[email protected]" }
s.source = { :git => "https://github.com/icanzilb/TaskQueue.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/icanzilb'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'TaskQueue'
end