-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathCHIOTPField.podspec
33 lines (25 loc) · 1.16 KB
/
CHIOTPField.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
Pod::Spec.new do |s|
s.name = 'CHIOTPField'
s.version = '0.1.0'
s.summary = 'CHIOTPField is a set of textfields that can be used for One-time passwords, SMS codes, PIN codes, etc.'
s.ios.deployment_target = '10.0'
s.tvos.deployment_target = '12.0'
s.homepage = 'https://github.com/ChiliLabs/CHIOTPField'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Chili' => '[email protected]' }
s.source = { :git => 'https://github.com/ChiliLabs/CHIOTPField.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.source_files = 'Sources/**/*.swift'
s.subspec 'One' do |one|
one.source_files = 'Sources/CHIOTPFieldOne/*.swift', 'Sources/Base/*.swift'
end
s.subspec 'Two' do |two|
two.source_files = 'Sources/CHIOTPFieldTwo/*.swift', 'Sources/Base/*.swift'
end
s.subspec 'Three' do |three|
three.source_files = 'Sources/CHIOTPFieldThree/*.swift', 'Sources/Base/*.swift'
end
s.subspec 'Four' do |four|
four.source_files = 'Sources/CHIOTPFieldFour/*.swift', 'Sources/Base/*.swift'
end
end