-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFMBase.podspec
More file actions
30 lines (27 loc) · 954 Bytes
/
FMBase.podspec
File metadata and controls
30 lines (27 loc) · 954 Bytes
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
28
29
30
Pod::Spec.new do |s|
s.name = 'FMBase'
s.version = '0.1.9'
s.summary = 'FMBase a dev toolkit'
s.homepage = 'https://github.com/tljackyi/FMBase'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/tljackyi/FMBase.git', :tag => s.version.to_s }
s.platform = :ios
s.ios.deployment_target = '9.0'
s.source_files = 'FMBase/Classes/**/**/*.{h,m}'
s.frameworks = "UIKit", "Foundation"
s.dependency 'YYModel'
s.dependency 'YYCategories'
s.dependency 'YYText'
s.dependency 'YYImage'
s.dependency 'YYCache'
s.dependency 'FCUUID'
s.dependency 'Tweaks'
s.dependency 'Masonry'
s.dependency 'GCDObjC'
s.dependency 'FCFileManager'
s.dependency 'UICKeyChainStore'
s.dependency 'AFNetworking'
s.dependency 'ReactiveObjC'
s.dependency 'SDWebImage', '~> 5.0'
end