-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDependencyRouter.podspec
More file actions
33 lines (27 loc) · 1.02 KB
/
Copy pathDependencyRouter.podspec
File metadata and controls
33 lines (27 loc) · 1.02 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
Pod::Spec.new do |s|
s.name = "DependencyRouter"
s.version = "0.2.1"
s.summary = "Router with dependency services and parameters"
s.description = <<-DESC
Written in Swift.
Router with dependency services and parameters
DESC
s.homepage = "https://github.com/ProVir/DependencyRouter"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "ViR (Vitaliy Korotkiy)" => "admin@provir.ru" }
s.source = { :git => "https://github.com/ProVir/DependencyRouter.git", :tag => "#{s.version}" }
s.swift_version = '5.0'
s.ios.deployment_target = '8.0'
s.subspec 'Core' do |ss|
ss.source_files = ['Source/Core/*.swift', 'Source/*.h']
ss.public_header_files = 'Source/*.h'
end
s.subspec 'General' do |ss|
ss.source_files = 'Source/General/*.swift'
ss.dependency 'DependencyRouter/Core'
end
s.subspec 'ObjC' do |ss|
ss.source_files = 'Source/ObjC/*.swift'
ss.dependency 'DependencyRouter/General'
end
end