-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathModuleServices.podspec
43 lines (35 loc) · 1.5 KB
/
ModuleServices.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
#
# Be sure to run `pod lib lint ModuleServices.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "ModuleServices"
s.version = "1.1.0"
s.summary = "Reusable ViewController with TableView, splitted in Sections"
s.description = "Reusable ViewController with TableView, split in Sections (called here modules) that help you to develop faster in Swift"
s.homepage = "https://github.com/cosmicfools/ModuleServices"
s.license = 'MIT'
s.author = { "Francisco Javier Trujillo Mata" => "[email protected]" }
s.source = { :git => "https://github.com/cosmicfools/ModuleServices.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/fjtrujy'
s.ios.deployment_target = '9.0'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.5' }
s.swift_version = '5.5'
s.default_subspec = 'Core'
s.subspec 'Core' do |ss|
ss.source_files = 'Sources/ModuleServices/**/*'
end
s.subspec 'Generic' do |ss|
ss.dependency 'ModuleServices/Core'
ss.source_files = 'Sources/ModuleGenericServices/**/*'
end
s.subspec 'Snapshot' do |ss|
ss.dependency 'ModuleServices/Core'
ss.dependency 'CombinationGenerator', '~> 0.2.4'
ss.source_files = 'Sources/ModuleSnapshotServices/**/*'
ss.frameworks = 'XCTest'
end
end