- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSoftUI.podspec
More file actions
Latest commit
46 lines (36 loc) · 1.36 KB
/
Copy pathSoftUI.podspec
File metadata and controls
46 lines (36 loc) · 1.36 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
Pod::Spec.newdo |s|
s.swift_versions='5.0'
s.name='SoftUI'
s.version='0.0.5'
s.summary='Neumorphism design pattern implementation for macOS/iOS/watchOS/tvOS'
s.homepage='https://github.com/hellc/SoftUI'
s.license='MIT'
s.author={'Ivan Manov'=>'ivanmanov@live.com'}
s.social_media_url='https://twitter.com/ihellc'
s.requires_arc=false
s.ios.deployment_target='11.0'
s.resources="Framework/SoftUI/**/*.xib"
s.resource_bundles={
'SoftUI'=>[
'Framework/SoftUI/**/*.xib'
]
}
s.source={:git=>'https://github.com/hellc/SoftUI.git',:tag=>s.version}
s.default_subspec='All'
s.subspec'All'do |all|
all.dependency'SoftUI/Core'
all.dependency'SoftUI/Buttons'
all.dependency'SoftUI/Cards'
end
s.subspec'Core'do |core|
core.source_files='Framework/SoftUI/Core/**/*.swift'
end
s.subspec'Buttons'do |buttons|
buttons.dependency'SoftUI/Core'
buttons.source_files='Framework/SoftUI/Controls/Buttons/*.swift'
end
s.subspec'Cards'do |cards|
cards.dependency'SoftUI/Core'
cards.source_files='Framework/SoftUI/Controls/Cards/**/*.{swift}'
end
end