-
Notifications
You must be signed in to change notification settings - Fork 12
/
STNetTaskQueue.podspec
19 lines (15 loc) · 967 Bytes
/
STNetTaskQueue.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "STNetTaskQueue"
s.version = "0.0.22"
s.summary = "STNetTaskQueue is a networking queue library for iOS and OS X. It's abstract and can be implemented in different protocols."
s.description = <<-DESC
STNetTaskQueue avoid you from directly dealing with "url", "request packing" and "response parsing". All networking tasks are described and processed by subclassing STNetTask, which provides you a clean code style in UI layer when handling networking.
DESC
s.homepage = "https://github.com/kevin0571/STNetTaskQueue"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Kevin Lin" => "[email protected]" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/kevin0571/STNetTaskQueue.git", :tag => s.version }
s.source_files = "STNetTaskQueue/*.{h,m}"
s.public_header_files = "STNetTaskQueue/*.h"
end