Skip to content

Commit d9c09fe

Browse files
committed
Add podspec.
1 parent 24f36c8 commit d9c09fe

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

STNetTaskQueue.podspec

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Pod::Spec.new do |s|
2+
s.name = "STNetTaskQueue"
3+
s.version = "0.0.1"
4+
s.summary = "Queue for managing network requests"
5+
6+
s.description = <<-DESC
7+
STNetTaskQueue may be your choice if you want to handle each network request stuff in separated STNetTask instead of having all the network requests logics in a "Manager" class
8+
DESC
9+
10+
s.homepage = "https://github.com/kevin0571/STNetTaskQueue"
11+
s.license = { :type => "MIT", :file => "LICENSE" }
12+
s.author = { "Kevin Lin" => "kevin_lyn@outlook.com" }
13+
14+
s.platform = :ios, "7.0"
15+
s.source = { :git => "https://github.com/kevin0571/STNetTaskQueue.git", :tag => s.version }
16+
s.dependency "AFNetworking", "~> 2.0"
17+
18+
s.source_files = "STNetTaskQueue/*.{h,m}"
19+
s.public_header_files = "STNetTaskQueue/*.h"
20+
end

0 commit comments

Comments
 (0)