forked from kevin-lyn/STNetTaskQueue
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTNetTaskQueue.podspec
More file actions
Latest commit
19 lines (15 loc) · 967 Bytes
/
Copy pathSTNetTaskQueue.podspec
File metadata and controls
19 lines (15 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.newdo |s|
s.name="STNetTaskQueue"
s.version="0.0.21"
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"=>"kevin_lyn@outlook.com"}
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