-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathZIKViper.podspec
More file actions
25 lines (18 loc) · 797 Bytes
/
Copy pathZIKViper.podspec
File metadata and controls
25 lines (18 loc) · 797 Bytes
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
Pod::Spec.new do |s|
s.name = "ZIKViper"
s.version = "1.1"
s.summary = "iOS VIPER implementation, relying on ZIKRouter."
s.description = <<-DESC
iOS VIPER implementation, relying on ZIKRouter. Designed for discovering modules and dependency injection with protocol.
DESC
s.homepage = "https://github.com/Zuikyo/ZIKRouter"
s.license = "MIT"
s.author = { "Zuikyo" => "zuilongzhizhu@gmail.com" }
s.platform = :ios, "7.0"
s.ios.deployment_target = "7.0"
s.source = { :git => "https://github.com/Zuikyo/ZIKViper.git", :tag => "#{s.version}" }
s.source_files = "ZIKViper/*.{h,m}"
s.frameworks = "Foundation", "UIKit"
s.requires_arc = true
s.dependency "ZIKRouter", '>= 0.6'
end