-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathXCEToolbox.podspec
72 lines (49 loc) · 2.57 KB
/
XCEToolbox.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
projName = 'Toolbox'
projSummary = 'Set of helpers for writing apps faster.'
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.20.2'
s.homepage = companyGitHubPage + '/' + projName
s.source = { :git => companyGitHubAccount + '/' + projName + '.git', :tag => s.version }
s.requires_arc = true
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Maxim Khatskevich' => '[email protected]' }
# === All platforms
s.source_files = 'Sources/Common/**/*.swift'
s.resource_bundle = { s.name + '_CommonTemplates' => 'Templates/Sourcery/Common/**/*.stencil' }
s.dependency 'Kingfisher', '~> 4.7.0'
s.dependency 'PromiseKit', '~> 6.2.0'
# === iOS
s.ios.deployment_target = '10.0'
s.ios.source_files = 'Sources/iOS/**/*.swift'
s.ios.resource_bundle = { s.name + '_iOSTemplates' => ['Templates/Sourcery/iOS/**/*.stencil', 'Templates/SwiftGen/iOS/**/*.stencil'] }
s.ios.framework = 'UIKit'
s.ios.dependency 'SwiftGen', '~> 5.3.0'
s.ios.dependency 'RandomColorSwift', '~> 1.0.0'
s.ios.dependency 'Mortar/Core_NoCreatable', '~> 1.4.0'
s.ios.dependency 'Mortar/MortarVFL_NoCreatable'
s.ios.dependency 'XCEArrayExt', '~> 1.1.0'
s.ios.dependency 'XCEUniFlow', '~> 4.10.0'
s.ios.dependency 'XCEViewExt', '~> 1.0.0'
s.ios.dependency 'XCEModelDependable', '~> 1.1.0'
s.ios.dependency 'XCEViewEvents', '~> 1.1.0'
s.ios.dependency 'XCEStream', '~> 1.1.0'
s.ios.dependency 'XCEFunctionalState', '~> 4.0.0'
s.ios.dependency 'XCEReusableView', '~> 1.1.0'
s.ios.dependency 'XCEValidatableValue', '~> 3.10'
# === macOS
# s.osx.deployment_target = '10.11'
# s.osx.dependency 'Mortar/Core_NoCreatable', '~> 1.4.0'
# s.osx.dependency 'Mortar/MortarVFL_NoCreatable'
# === tvOS
# s.tvos.dependency 'Mortar/Core_NoCreatable', '~> 1.4.0'
# s.tvos.dependency 'Mortar/MortarVFL_NoCreatable'
# === watchOS
# no Mortart! Check latest version, try to adopt or use SnapKit instead?
end