forked from lovemo/MVVMFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SUIMVVMKit.podspec
27 lines (24 loc) · 944 Bytes
/
SUIMVVMKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Pod::Spec.new do |s|
s.name = 'SUIMVVMKit'
s.version = '0.3.8'
s.summary = 'SUIMVVMKit is a MVVM frameWork easy to develop iOS'
s.homepage = 'https://github.com/lovemo/MVVMFramework'
s.platform = :ios, '7.0'
s.license = 'MIT'
s.author = { 'lovemo' => '[email protected]' }
s.source = { :git => 'https://github.com/lovemo/MVVMFramework.git',:tag => '0.3.8' }
s.requires_arc = true
s.public_header_files = 'SUIMVVMKit/**/*.h'
s.source_files = 'SUIMVVMKit/SUIMVVMKit.h'
s.frameworks = 'CoreFoundation','Foundation','UIKit'
s.subspec 'SUIMVVMKit' do |ss|
ss.requires_arc = true
ss.library = 'sqlite3'
ss.dependency 'AFNetworking'
ss.dependency 'MJRefresh'
ss.dependency 'SUIMVVMNetwork'
ss.dependency 'SUIUtils'
ss.source_files = 'SUIMVVMKit/SUIMVVMKit/**/*'
ss.public_header_files = 'SUIMVVMKit/SUIMVVMKit/**/*.h'
end
end