-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHaidoraBase.podspec
More file actions
36 lines (32 loc) · 1.25 KB
/
HaidoraBase.podspec
File metadata and controls
36 lines (32 loc) · 1.25 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|
s.name = "HaidoraBase"
s.version = "2.0"
s.summary = "HaidoraBase."
s.description = <<-DESC
some basic codes for app.
DESC
s.homepage = "https://github.com/Haidora/HaidoraBase"
s.license = 'MIT'
s.author = { "mrdaios" => "mrdaios@gmail.com" }
s.source = { :git => "https://github.com/Haidora/HaidoraBase.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.subspec 'Core' do |core|
core.source_files = 'Pod/Classes/Core/**/*.{h,m}','Pod/Classes/*.{h,m}'
end
s.subspec 'Category' do |category|
category.source_files = 'Pod/Classes/*.{h,m}'
category.subspec 'Foundation' do |foundation|
foundation.source_files = 'Pod/Classes/Category/Foundation/**/*.{h,m}','Pod/Classes/Category/*.{h,m}'
end
category.subspec 'UIKit' do |uiKit|
uiKit.source_files = 'Pod/Classes/Category/UIKit/**/*.{h,m}','Pod/Classes/Category/*.{h,m}'
end
end
s.subspec 'Util' do |utils|
utils.source_files = 'Pod/Classes/Util/**/*.{h,m}','Pod/Classes/*.{h,m}'
end
s.resource_bundles = {
'HaidoraBase' => ['Pod/Assets/*.*']
}
end