-
Notifications
You must be signed in to change notification settings - Fork 0
/
SampleSubPod.podspec
27 lines (20 loc) · 979 Bytes
/
SampleSubPod.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
Pod::Spec.new do |spec|
spec.name = "SampleSubPod"
spec.version = "1.0.5"
spec.summary = "SampleSubPod is sample modular SDK for research purpose."
spec.description = "SampleSubPod is sample modular SDK for research purpose. It had few modular subspec so user can install base on what they need."
spec.homepage = "https://github.com/victortoya/SampleSubPod"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Victor Agung Sukarno" => "[email protected]" }
spec.platform = :ios
spec.platform = :ios, "11.0"
spec.source = { :git => "https://github.com/victortoya/SampleSubPod.git", :tag => spec.version }
# spec.source_files = "SampleSubPod/**/*.{h,m,swift}"
spec.subspec 'PopUp' do |ss|
ss.source_files = 'SampleSubPod/PopUp'
ss.dependency 'SampleSubPod/Color'
end
spec.subspec 'Color' do |ss|
ss.source_files = 'SampleSubPod/Color'
end
end