-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxAPI.podspec
More file actions
40 lines (32 loc) · 1.22 KB
/
xAPI.podspec
File metadata and controls
40 lines (32 loc) · 1.22 KB
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
31
32
33
34
35
36
37
38
39
40
#
# Be sure to run `pod spec lint xAPI.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = 'xAPI'
s.version = '2.1.0.0'
s.summary = '提供链式api调用'
s.description = <<-DESC
提供链式api调用的基础组件库
DESC
s.homepage = 'https://github.com/jinsikui/xAPI.git'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'jsk' => '1811652374@qq.com' }
s.source = { :git => 'https://github.com/jinsikui/xAPI.git'}
s.ios.deployment_target = '9.0'
s.source_files = 'Source/Classes/xAPI.h'
s.dependency 'PromisesObjC'
s.dependency 'AFNetworking', '~> 4.0.0'
s.subspec 'Network' do |sn|
sn.source_files = 'Source/Classes/Network/*'
end
s.subspec 'Helpers' do |sh|
sh.source_files = 'Source/Classes/Helpers/*'
end
s.subspec 'Services' do |ss|
ss.source_files = 'Source/Classes/Services/*'
end
end