-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXCEModelDependable.podspec
42 lines (27 loc) · 1.17 KB
/
XCEModelDependable.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
projName = 'ModelDependable'
projSummary = 'Set of protocols for organizing routine model dependencies.'
companyPrefix = 'XCE'
companyName = 'XCEssentials'
companyGitHubAccount = 'https://github.com/' + companyName
companyGitHubPage = 'https://' + companyName + '.github.io'
#===
Pod::Spec.new do |s|
s.name = companyPrefix + projName
s.summary = projSummary
s.version = '1.1.1'
s.homepage = companyGitHubPage + '/' + projName
s.source = { :git => companyGitHubAccount + '/' + projName + '.git', :tag => s.version }
s.osx.deployment_target = '10.11'
s.ios.deployment_target = '9.0'
s.requires_arc = true
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Maxim Khatskevich' => '[email protected]' }
# === All platforms
s.source_files = 'Sources/Common/**/*.swift'
# === iOS
s.ios.deployment_target = '9.0'
s.ios.source_files = 'Sources/iOS/**/*.swift'
s.ios.framework = 'UIKit'
# === macOS
s.osx.deployment_target = '10.11'
end