-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSINetworkManager.podspec
More file actions
21 lines (19 loc) · 871 Bytes
/
SINetworkManager.podspec
File metadata and controls
21 lines (19 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "SINetworkManager"
s.version = "1.0.5"
s.summary = "A NetworkManager With AFNetworking And YYCache."
s.description = <<-DESC
A Network Manager With AFNetworking And YYCache
DESC
s.homepage = "https://github.com/silence0201/SINetworkManager"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Silence" => "374619540@qq.com" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/silence0201/SINetworkManager.git", :tag => "1.0.5" }
s.source_files = "SINetworkManager", "SINetworkManager/**/*.{h,m}"
s.exclude_files = "SINetworkManager/Exclude"
s.public_header_files = "SINetworkManager/**/*.h"
s.requires_arc = true
s.dependency "AFNetworking", "~> 3.1"
s.dependency "YYCache", "~> 1.0"
end