-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUITextSubClass.podspec
More file actions
43 lines (40 loc) · 1.55 KB
/
Copy pathUITextSubClass.podspec
File metadata and controls
43 lines (40 loc) · 1.55 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
Pod::Spec.new do |s|
s.name = "UITextSubClass"
s.version = "1.0.3"
s.summary = "UITextField/UITextView SubClass library."
s.homepage = "https://github.com/azu/UITextSubClass"
s.screenshots = "http://f.cl.ly/items/2O0W2X3e1j3z1a2h3Y0J/UITextWithDatepicker.png"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "azu" => "info@efcl.info" }
s.platform = :ios, '12.0'
s.source = {
:git => "https://github.com/azu/UITextSubClass.git",
:tag => s.version.to_s
}
s.requires_arc = true
s.swift_version = '5.6'
s.subspec 'Core' do |a|
a.resource_bundles = { 'UITextSubClassLocalize' => ['UITextSubClass/*.lproj'] }
a.source_files = 'UITextSubClass/UITextSubClassHelper.swift'
end
s.subspec 'UITextFieldWithDatePicker' do |a|
a.source_files = 'UITextSubClass/UITextFieldWithDatePicker/*.swift'
a.dependency 'UITextSubClass/Core'
end
s.subspec 'UITextFieldWithPicker' do |a|
a.source_files = 'UITextSubClass/UITextFieldWithPicker/*.swift'
a.dependency 'UITextSubClass/Core'
end
s.subspec 'UITextFieldWithDecimalPad' do |a|
a.source_files = 'UITextSubClass/UITextFieldWithDecimalPad/*.swift'
a.dependency 'UITextSubClass/Core'
end
s.subspec 'UITextFieldWithNumberPad' do |a|
a.source_files = 'UITextSubClass/UITextFieldWithNumberPad/*.swift'
a.dependency 'UITextSubClass/Core'
end
s.subspec 'UITextViewWithPlaceholder' do |a|
a.source_files = 'UITextSubClass/UITextViewWithPlaceholder/*.swift'
a.dependency 'UITextSubClass/Core'
end
end