forked from uxyheaven/XYQuick
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXYQuick.podspec
More file actions
36 lines (31 loc) · 1.04 KB
/
Copy pathXYQuick.podspec
File metadata and controls
36 lines (31 loc) · 1.04 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
Pod::Spec.new do |s|
version = "0.8.6"
s.name = "XYQuick"
s.version = version
s.summary = "A quick develop utility on iOS."
s.homepage = "https://github.com/uxyheaven"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "uxyheaven" => "uxyheaven@163.com" }
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/uxyheaven/XYQuick.git", :tag => version }
#s.source_files = 'XYQuick/*'
s.requires_arc = true
s.subspec 'header' do |ss|
ss.source_files = 'XYQuick/*'
end
s.subspec 'core' do |ss|
ss.source_files = 'XYQuick/core/**/*'
ss.dependency 'XYQuick/header'
end
s.subspec 'ui' do |ss|
ss.source_files = 'XYQuick/ui/**/*'
ss.dependency 'XYQuick/header'
ss.dependency 'XYQuick/core'
end
s.subspec 'event' do |ss|
ss.source_files = 'XYQuick/event/**/*'
ss.dependency 'XYQuick/header'
ss.dependency 'XYQuick/core'
ss.dependency 'XYQuick/ui'
end
end