forked from Zuikyo/ZIKRouter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZRouter.podspec
26 lines (19 loc) · 1015 Bytes
/
ZRouter.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
Pod::Spec.new do |s|
s.name = "ZRouter"
s.version = "1.0.6"
s.summary = "Interface-Oriented iOS Swift router for discovering modules and injecting dependencies with protocol."
s.description = <<-DESC
Interface-Oriented iOS Swift router for discovering modules and injecting dependencies with protocol, designed for VIPER. The view router can perform all navigation types in UIKit through one method. The service router can discover service with protocol.
DESC
s.homepage = "https://github.com/Zuikyo/ZIKRouter"
s.license = "MIT"
s.author = { "Zuikyo" => "[email protected]" }
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
s.swift_version = "4.0"
s.source = { :git => "https://github.com/Zuikyo/ZIKRouter.git", :tag => "swift-#{s.version}" }
s.source_files = "ZRouter/*.swift"
s.requires_arc = true
s.dependency "ZIKRouter", '>= 1.0.6'
end