-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathPodfile
More file actions
46 lines (34 loc) · 717 Bytes
/
Podfile
File metadata and controls
46 lines (34 loc) · 717 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# frozen_string_literal: true
source 'https://github.com/CocoaPods/Specs.git'
IOS_VERSION = '10.0'
def ios_pods
pod 'Bugsnag'
end
def ui_tests_pods
pod 'KIF', '3.7.8', configurations: ['Debug']
end
target 'CouchTrackerApp' do
platform :ios, IOS_VERSION
use_frameworks!
inhibit_all_warnings!
ios_pods
end
target 'CouchTrackerAppTestable' do
platform :ios, IOS_VERSION
use_frameworks!
inhibit_all_warnings!
ui_tests_pods
end
target 'CouchTracker' do
platform :ios, IOS_VERSION
use_frameworks!
inhibit_all_warnings!
pod 'SwiftLint', '0.39.2'
ios_pods
end
target 'CouchTrackerUITests' do
platform :ios, IOS_VERSION
use_frameworks!
inhibit_all_warnings!
ui_tests_pods
end