-
Notifications
You must be signed in to change notification settings - Fork 3
/
IXColor.podspec
39 lines (29 loc) · 1.07 KB
/
IXColor.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
28
29
30
31
32
33
34
35
36
37
38
39
Pod::Spec.new do |s|
s.name = "IXColor"
s.version = "0.0.8"
s.summary = "App颜色图片动态更换框架"
s.description = "wightmeng@gmail.com"
s.homepage = "https://github.com/NSSONGMENG/IXColor"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "wightmeng@gmail.com" => "" }
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/NSSONGMENG/IXColor.git", :tag => "#{s.version}" }
s.source_files = "IXColor/IXColorHeader.h"
s.public_header_files = "IXColor/IXColorHeader.h"
s.requires_arc = true
s.subspec 'Core' do |sub|
sub.source_files = "IXColor/Core/*.{h,m}"
sub.public_header_files = "IXColor/Core/*.h"
# sub.dependency 'IXColor'
end
s.subspec 'UIKit' do |sub|
sub.source_files = "IXColor/UIKit/*.{h,m}"
sub.public_header_files = "IXColor/UIKit/*.h"
sub.dependency 'IXColor/Core'
end
s.subspec 'Quartz' do |sub|
sub.source_files = "IXColor/Quartz/*.{h,m}"
sub.public_header_files = "IXColor/Quartz/*.h"
sub.dependency 'IXColor/Core'
end
end