-
Notifications
You must be signed in to change notification settings - Fork 6
/
TinkoffMockStrapping.podspec
47 lines (32 loc) · 2.35 KB
/
TinkoffMockStrapping.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
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = 'TinkoffMockStrapping'
s.summary = 'Library for unifying the approach to network mocking in unit- & UI-tests.'
s.version = '0.3.1'
s.homepage = 'https://github.com/tinkoff-mobile-tech/TinkoffMockStrapping'
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => 'Apache License 2.0', :file => 'LICENSE' }
s.author = { 'RomanGL' => '[email protected]',
'volokhin' => '[email protected]',
'niceta' => '[email protected]',
'ra2ra' => '[email protected]' }
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => 'https://github.com/tinkoff-mobile-tech/TinkoffMockStrapping.git',
:tag => s.version.to_s }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = '11.0'
s.swift_version = '5.0'
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.default_subspec = 'Core'
# The core subspec without decorators for any type of tests.
s.subspec 'Core' do |core_spec|
core_spec.source_files = 'Development/Source/Core/**/*.{swift}'
core_spec.dependency 'SwiftyJSON', '~> 5.0.0'
end
# The subspec for UI tests. Swifter (https://github.com/httpswift/swifter) was used as a default mock server.
s.subspec 'Swifter' do |swifter_spec|
swifter_spec.source_files = 'Development/Source/Swifter/**/*.{swift}'
swifter_spec.dependency 'TinkoffMockStrapping/Core'
swifter_spec.dependency 'Swifter', '~> 1.5.0'
end
end