-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeviceFontSize.podspec
More file actions
70 lines (55 loc) · 1.92 KB
/
DeviceFontSize.podspec
File metadata and controls
70 lines (55 loc) · 1.92 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
@version = "0.0.3"
Pod::Spec.new do |s|
s.name = 'DeviceFontSize'
s.version = @version
s.summary = 'DeviceFontSize'
s.homepage = 'https://github.com/taewan0530/DeviceFontSize'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'taewan' => 'taewan0530@daum.net' }
s.source = { :git => 'https://github.com/taewan0530/DeviceFontSize.git', :tag => @version }
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.default_subspecs = 'All'
s.subspec 'Core' do |sp|
sp.source_files = 'Pod/Core/*.{h,m,swift}'
end
s.subspec 'All' do |sub|
sub.source_files = 'Pod/**/*.{swift}'
end
s.subspec 'iPhone_All' do |sp|
sp.dependency 'DeviceFontSize/Core'
sp.source_files = 'Pod/iPhone/*.{h,m,swift}'
end
s.subspec 'iPhone_4' do |sp|
sp.dependency 'DeviceFontSize/Core'
sp.source_files = 'Pod/iPhone/DeviceFontSizeLabel+iPhone4.swift'
end
s.subspec 'iPhone_5' do |sp|
sp.dependency 'DeviceFontSize/Core'
sp.source_files = 'Pod/iPhone/DeviceFontSizeLabel+iPhone5.swift'
end
s.subspec 'iPhone_6' do |sp|
sp.dependency 'DeviceFontSize/Core'
sp.source_files = 'Pod/iPhone/DeviceFontSizeLabel+iPhone6.swift'
end
s.subspec 'iPhone_6+' do |sp|
sp.dependency 'DeviceFontSize/Core'
sp.source_files = 'Pod/iPhone/DeviceFontSizeLabel+iPhone6plus.swift'
end
s.subspec 'iPad_All' do |sp|
sp.dependency 'DeviceFontSize/Core'
sp.source_files = 'Pod/iPad/*.{h,m,swift}'
end
s.subspec 'iPad_Default' do |sp|
sp.dependency 'DeviceFontSize/Core'
sp.source_files = 'Pod/iPad/DeviceFontSizeLabel+iPad.swift'
end
s.subspec 'iPad_Mini' do |sp|
sp.dependency 'DeviceFontSize/Core'
sp.source_files = 'Pod/iPad/DeviceFontSizeLabel+iPad_Mini.swift'
end
s.subspec 'iPad_Pro' do |sp|
sp.dependency 'DeviceFontSize/Core'
sp.source_files = 'Pod/iPad/DeviceFontSizeLabel+iPad_Pro.swift'
end
end