-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPodfile
executable file
·53 lines (39 loc) · 855 Bytes
/
Podfile
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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
use_frameworks!
inhibit_all_warnings!
target 'Development' do
#UI Dev
pod 'Nuke'
pod 'IQKeyboardManagerSwift'
pod 'ESPullToRefresh'
pod 'FTIndicator'
#Networking
pod 'Alamofire'
#Testing
pod 'Mocker'
#Dependency Injection
pod 'Swinject'
pod 'SwinjectAutoregistration'
pod 'SwinjectStoryboard'
pod 'Resolver'
#Reactive / Functional Programming
pod 'RxSwift'
pod 'RxCocoa'
#CI/CD
pod 'AppCenter'
pod 'SwiftLint'
#GraphQL
pod 'Apollo'
target 'MockingProjectTests' do
inherit! :search_paths
end
target 'Test' do
inherit! :search_paths
pod 'RxBlocking'
pod 'RxTest'
end
target 'Production' do
inherit! :search_paths
end
end