-
Notifications
You must be signed in to change notification settings - Fork 450
/
Copy pathSUIMVVMKit.podspec
26 lines (23 loc) · 915 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
Pod::Spec.new do |s|
s.name = 'SUIMVVMKit'
s.version = '0.5.2'
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 => s.version.to_s }
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 'FMDB'
ss.dependency 'SUIUtils'
ss.source_files = 'SUIMVVMKit/SUIMVVMKit/**/*'
ss.public_header_files = 'SUIMVVMKit/SUIMVVMKit/**/*.h'
end
end