-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathJamitFoundation.podspec
51 lines (42 loc) · 1.54 KB
/
JamitFoundation.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Pod::Spec.new do |spec|
spec.name = "JamitFoundation"
spec.version = "1.4.2"
spec.summary = "JamitFoundation is a collection of useful concepts to enable composition oriented development with UIKit."
spec.homepage = "https://github.com/JamitLabs/JamitFoundation"
spec.license = { :type => 'MIT' }
spec.author = { "Jamit Labs GmbH" => "[email protected]" }
spec.platform = :ios, "9.0"
spec.swift_version = "5.0"
spec.source = { :git => "https://github.com/JamitLabs/JamitFoundation.git", :tag => "#{spec.version}" }
spec.subspec 'Core' do |sp|
sp.source_files = "Sources/**/*.{h,m,swift}"
end
spec.subspec 'BarcodeScanner' do |sp|
sp.dependency 'JamitFoundation/Core'
sp.source_files = 'Modules/BarcodeScanner'
end
spec.subspec 'CarouselView' do |sp|
sp.dependency 'JamitFoundation/Core'
sp.source_files = 'Modules/CarouselView'
end
spec.subspec 'GridView' do |sp|
sp.dependency 'JamitFoundation/Core'
sp.source_files = 'Modules/GridView'
end
spec.subspec 'PageView' do |sp|
sp.dependency 'JamitFoundation/Core'
sp.source_files = 'Modules/PageView'
end
spec.subspec 'TimePickerView' do |sp|
sp.dependency 'JamitFoundation/Core'
sp.source_files = 'Modules/TimePickerView'
end
spec.subspec 'WeakCache' do |sp|
sp.dependency 'JamitFoundation/Core'
sp.source_files = 'Modules/WeakCache'
end
spec.subspec 'MessageView' do |sp|
sp.dependency 'JamitFoundation/Core'
sp.source_files = 'Modules/MessageView'
end
end