-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSUIMVVMNetwork.podspec
More file actions
22 lines (20 loc) · 962 Bytes
/
SUIMVVMNetwork.podspec
File metadata and controls
22 lines (20 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'SUIMVVMNetwork'
s.version = '0.0.3'
s.summary = 'SUIMVVMNetwork is a http request frameWork easy to develop iOS'
s.homepage = 'https://github.com/lovemo/SUIMVVMNetwork'
s.platform = :ios, '7.0'
s.license = 'MIT'
s.author = { 'lovemo' => 'lovemomoyulin@qq.com' }
s.source = { :git => 'https://github.com/lovemo/SUIMVVMNetwork.git',:tag => '0.0.3' }
s.requires_arc = true
s.public_header_files = 'SUIMVVMNetwork/**/*.h'
s.source_files = 'SUIMVVMNetwork/SMKNetworkPublic.h'
s.framework = 'CoreFoundation','Foundation','UIKit'
s.subspec 'SUIMVVMNetwork' do |ss|
ss.dependency 'AFNetworking', '>= 3.0'
ss.dependency 'SUIMVVMStore'
ss.source_files = 'SUIMVVMNetwork/SUIMVVMNetwork/**/*'
ss.public_header_files = 'SUIMVVMNetwork/**/*.h'
end
end