-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJLKit.podspec
More file actions
25 lines (22 loc) · 908 Bytes
/
Copy pathJLKit.podspec
File metadata and controls
25 lines (22 loc) · 908 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
Pod::Spec.new do |s|
s.name = "JLKit"
s.version = "0.2.118"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = "JLKit"
s.homepage = "https://github.com/jangsy7883/JLKit"
s.author = { "hmhv" => "jangsy7883@gmail.com" }
s.source = { :git => "https://github.com/jangsy7883/JLKit.git", :tag => s.version }
s.platform = :ios, '8.0'
s.requires_arc = true
s.default_subspec = 'Core'
s.subspec 'Core' do |core|
core.dependency 'JLKit/Additions'
core.dependency 'JLKit/StatusBarStyle'
end
s.subspec 'Additions' do |sp|
sp.source_files = 'JLKit/JLKit.h','JLKit/JLKitDefine.h','JLKit/Additions/Foundation/*.{h,m}','JLKit/Additions/UIKit/*.{h,m}'
end
s.subspec 'StatusBarStyle' do |ssp|
ssp.source_files = 'JLKit/Additions/StatusBarStyle/*.{h,m}'
end
end