-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDDUIKitExtensions.podspec
More file actions
69 lines (53 loc) · 2.24 KB
/
DDUIKitExtensions.podspec
File metadata and controls
69 lines (53 loc) · 2.24 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
#
# Be sure to run `pod lib lint UIKitExtensions.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'DDUIKitExtensions'
s.version = '0.12.0'
s.summary = 'Helpful set of homemade UIKit extensions'
s.homepage = 'http://dashdevs.com'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'dashdevs llc' => 'hello@dashdevs.com' }
s.source = { :git => 'https://github.com/dashdevs/uikitextensions.git', :tag => s.version }
s.ios.deployment_target = '10.0'
s.frameworks = 'UIKit'
s.swift_version = '4.2'
s.default_subspec = :none
s.subspec 'CGSize' do |ss|
ss.source_files = 'Sources/CGSizeExtension/CGSize+DDExtensions.swift'
end
s.subspec 'UIColor' do |ss|
ss.source_files = 'Sources/UIColorExtension/UIColor+DDExtensions.swift'
end
s.subspec 'UIImage' do |ss|
ss.source_files = 'Sources/UIImageExtension/UIImage+DDExtensions.swift'
end
s.subspec 'UINavigationController' do |ss|
ss.source_files = 'Sources/UINavigationControllerExtension/UINavigationController+DDExtensions.swift'
end
s.subspec 'UITableView' do |ss|
ss.source_files = 'Sources/UITableViewExtension/UITableView+DDExtensions.swift'
end
s.subspec 'UIView' do |ss|
ss.source_files = 'Sources/UIViewExtension/UIView+DDExtensions.swift'
end
s.subspec 'UIViewController' do |ss|
ss.source_files = 'Sources/UIViewControllerExtension/UIViewController+DDExtensions.swift'
end
s.subspec 'UITextField' do |ss|
ss.source_files = 'Sources/UITextFieldExtension/UITextField+DDExtensions.swift'
end
s.subspec 'UIApplication' do |ss|
ss.source_files = 'Sources/UIApplicationExtension/UIApplication+DDExtensions.swift'
end
s.subspec 'UIKit+Sketch' do |ss|
ss.source_files = 'Sources/UIKitSketchExtension/CALayer+DDExtensions.swift', 'UIKitExtensions/NSAttributedString+DDExtensions.swift', 'UIKitExtensions/UIScreen+DDExtensions.swift'
end
s.subspec 'PaddedLabel' do |ss|
ss.source_files = 'Sources/PaddedLabelExtension/PaddedLabel.swift'
end
end