-
Notifications
You must be signed in to change notification settings - Fork 0
/
ViperArch.podspec
30 lines (24 loc) · 1.02 KB
/
ViperArch.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
Pod::Spec.new do |s|
s.name = "ViperArch"
s.version = "1.0.0"
s.summary = "Foundation library for Viper Architecture by ideil. Ported to Swift from ViperMcFlurry by Rambler"
s.homepage = "https://www.ideil.com/"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.authors = {
"Eduard Pelesh" => "[email protected]",
"Natali Polovnikova" => "[email protected]"
}
s.platform = :ios, :tvos
s.ios.deployment_target = "9.0"
s.tvos.deployment_target = "9.0"
s.requires_arc = true
s.source = { :git => "https://github.com/ideil/ios-viper-arch.git", :tag => "#{s.version}" }
s.source_files = [
"Source/*.swift",
"ViperArch/*.{h,m}",
"ViperArchTV/*.{h,m}"
]
s.module_name = "ViperArch"
s.ios.exclude_files = 'ViperArchTV/**/*.{h,m,swift}'
s.tvos.exclude_files = 'ViperArch/**/*.{h,m,swift}'
end