-
Notifications
You must be signed in to change notification settings - Fork 3
/
SwiftDatePicker.podspec
36 lines (25 loc) · 1009 Bytes
/
SwiftDatePicker.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
Pod::Spec.new do |s|
s.name = "SwiftDatePicker"
s.version = "1.2.0"
s.summary = "A short description of SwiftDatePicker."
s.homepage = 'https://github.com/jackiehu/SwiftDatePicker'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'jackiehu' => 'jackie' }
s.source = { :git => 'https://github.com/jackiehu/SwiftDatePicker.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.dependency 'SnapKit'
s.swift_versions = ['4.2','5.0','5.1','5.2','5.3','5.4','5.5']
s.requires_arc = true
s.subspec 'Tools' do |ss|
ss.source_files = 'Sources/SwiftDatePicker/Tools/**/*'
end
s.subspec 'UIKit' do |ss|
ss.dependency 'SwiftDatePicker/Tools'
ss.source_files = 'Sources/SwiftDatePicker/UIKit/**/*'
end
s.subspec 'Custom' do |ss|
ss.dependency 'SwiftDate'
ss.dependency 'SwiftDatePicker/Tools'
ss.source_files = 'Sources/SwiftDatePicker/Custom/**/*'
end
end