This repository has been archived by the owner on Dec 19, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
AZAppearanceKit.podspec
82 lines (72 loc) · 2.9 KB
/
AZAppearanceKit.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
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
71
72
73
74
75
76
77
78
79
80
81
82
Pod::Spec.new do |s|
s.name = 'AZAppearanceKit'
s.version = '0.7.0'
s.summary = 'A series of UI and drawing-related Objective-C components.'
s.homepage = 'https://github.com/zwaldowski/AZAppearanceKit'
s.license = 'MIT'
s.authors = { 'Zachary Waldowski' => '[email protected]',
'Alexsander Akers' => '[email protected]' }
s.source = { :git => 'https://github.com/zwaldowski/AZAppearanceKit.git', :tag => '0.7.0' }
s.requires_arc = true
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.subspec 'AZDrawingFunctions' do |ss|
ss.source_files = 'AZAppearanceKit/AZDrawingFunctions.{h,m}'
ss.frameworks = 'CoreGraphics'
end
s.subspec 'AZGradient' do |ss|
ss.source_files = 'AZAppearanceKit/AZGradient.{h,m}'
ss.ios.dependency 'AZAppearanceKit/AZDrawingFunctions'
end
s.subspec 'AZShadow' do |ss|
ss.source_files = 'AZAppearanceKit/AZShadow.{h,m}'
end
s.subspec 'AZGradientView' do |ss|
ss.platform = :ios
ss.source_files = 'AZAppearanceKit/AZGradientView.{h,m}'
ss.dependency 'AZAppearanceKit/AZGradient'
end
s.subspec 'AZLabel' do |ss|
ss.platform = :ios
ss.frameworks = 'CoreGraphics', 'CoreText'
ss.source_files = 'AZAppearanceKit/AZLabel.{h,m}'
ss.dependency 'AZAppearanceKit/AZDrawingFunctions'
ss.dependency 'AZAppearanceKit/AZGradient'
ss.dependency 'AZAppearanceKit/AZShadow'
end
s.subspec 'AZShadowedTableView' do |ss|
ss.platform = :ios
ss.source_files = 'AZAppearanceKit/AZShadowedTableView.{h,m}'
ss.dependency 'AZAppearanceKit/AZDrawingFunctions'
end
s.subspec 'AZTableViewCell' do |ss|
ss.platform = :ios
ss.frameworks = 'QuartzCore'
ss.source_files = 'AZAppearanceKit/AZTableViewCell.{h,m}'
ss.dependency 'AZAppearanceKit/AZDrawingFunctions'
ss.dependency 'AZAppearanceKit/AZGradientView'
ss.dependency 'AZAppearanceKit/AZGradient'
ss.dependency 'AZAppearanceKit/AZShadow'
end
s.subspec 'AZToolbar' do |ss|
ss.platform = :ios
ss.frameworks = 'QuartzCore'
ss.source_files = 'AZAppearanceKit/AZToolbar.{h,m}'
ss.dependency 'AZAppearanceKit/AZDrawingFunctions'
ss.dependency 'AZAppearanceKit/AZGradient'
end
s.subspec 'AZNavigationBar' do |ss|
ss.platform = :ios
ss.frameworks = 'QuartzCore'
ss.source_files = 'AZAppearanceKit/AZNavigationBar.{h,m}'
ss.dependency 'AZAppearanceKit/AZDrawingFunctions'
ss.dependency 'AZAppearanceKit/AZGradient'
end
s.subspec 'AZTabBar' do |ss|
ss.platform = :ios
ss.frameworks = 'QuartzCore'
ss.source_files = 'AZAppearanceKit/AZTabBar.{h,m}'
ss.dependency 'AZAppearanceKit/AZDrawingFunctions'
ss.dependency 'AZAppearanceKit/AZGradient'
end
end