-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDECategories.podspec
More file actions
93 lines (71 loc) · 2.89 KB
/
Copy pathDECategories.podspec
File metadata and controls
93 lines (71 loc) · 2.89 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
Pod::Spec.new do |s|
s.name = 'DECategories'
s.version = '0.0.1'
s.homepage = 'https://github.com/dreamengine/DECategories'
s.author = { 'Dream Engine Interactive, Inc.' => 'contact@dreamengine.com' }
s.social_media_url = 'https://twitter.com/dreamengine'
s.summary = 'A collection of useful categories for the modern iOS developer.'
s.description = "DECategories is a collection of Foundation and UIKit categories that simplify some of the monotonous code patterns in iOS development. It also provides various bells and whistles to streamline small tasks."
s.platform = :ios, '6.0'
s.requires_arc = true
s.frameworks = ['Foundation', 'UIKit']
s.source = { :git => 'https://github.com/dreamengine/DECategories.git', :tag => s.version.to_s }
s.license = {
:type => 'MIT',
:file => 'LICENSE'
}
s.subspec 'NSData+DEImageMimeType' do |cs|
cs.source_files = 'src/NSData+DEImageMimeType.{h,m}'
end
s.subspec 'NSMutableArray+DEWeakReferences' do |cs|
cs.source_files = 'src/NSMutableArray+DEWeakReferences.{h,m}'
end
s.subspec 'NSMutableDictionary+DENonNil' do |cs|
cs.source_files = 'src/NSMutableDictionary+DENonNil.{h,m}'
end
s.subspec 'NSMutableSet+DEWeakReferences' do |cs|
cs.source_files = 'src/NSMutableSet+DEWeakReferences.{h,m}'
end
s.subspec 'NSNotification+DEConveniences' do |cs|
cs.source_files = 'src/NSNotification+DEConveniences.{h,m}'
end
s.subspec 'NSString+DERelativePaths' do |cs|
cs.source_files = 'src/NSString+DERelativePaths.{h,m}'
end
s.subspec 'UIButton+DEBackgroundColor' do |cs|
cs.source_files = 'src/UIButton+DEBackgroundColor.{h,m}'
cs.dependency 'DECategories/UIImage+DEColorRect'
end
s.subspec 'UIColor+DEConveniences' do |cs|
cs.source_files = 'src/UIColor+DEConveniences.{h,m}'
end
s.subspec 'UIGestureRecognizer+DECancel' do |cs|
cs.source_files = 'src/UIGestureRecognizer+DECancel.{h,m}'
end
s.subspec 'UIImage+DEColorRect' do |cs|
cs.source_files = 'src/UIImage+DEColorRect.{h,m}'
cs.frameworks = ['QuartzCore']
end
s.subspec 'UIImage+DEResize' do |cs|
cs.source_files = 'src/UIImage+DEResize.{h,m}'
end
s.subspec 'UIImage+DETintColor' do |cs|
cs.source_files = 'src/UIImage+DETintColor.{h,m}'
end
s.subspec 'UINib+DEConveniences' do |cs|
cs.source_files = 'src/UINib+DEConveniences.{h,m}'
end
s.subspec 'UITableView+DEHideEmptyCells' do |cs|
cs.source_files = 'src/UITableView+DEHideEmptyCells.{h,m}'
end
s.subspec 'UIView+DEConveniences' do |cs|
cs.source_files = 'src/UIView+DEConveniences.{h,m}'
cs.dependency 'DECategories/UINib+DEConveniences'
end
s.subspec 'UIView+DEFirstResponder' do |cs|
cs.source_files = 'src/UIView+DEFirstResponder.{h,m}'
end
s.subspec 'UIViewController+DEConveniences' do |cs|
cs.source_files = 'src/UIViewController+DEConveniences.{h,m}'
end
end