This repository was archived by the owner on Nov 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
67 lines (58 loc) · 1.29 KB
/
Podfile
File metadata and controls
67 lines (58 loc) · 1.29 KB
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
# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
def model_pods
shared_pods
pod 'Alamofire'
pod 'Moya/RxSwift'
pod 'Gloss'
pod 'AlamofireImage'
end
def app_pods
shared_pods
pod 'Fabric'
pod 'Crashlytics'
pod 'SnapKit'
pod 'IHKeyboardAvoiding', :git => 'https://github.com/Kirow/IHKeyboardAvoiding.git', :branch => 'swift-4.2'
pod 'MXParallaxHeader'
pod 'Hero'
pod 'MZFormSheetPresentationController'
pod 'TTTAttributedLabel'
pod 'Tabman'
pod 'pop'
pod 'BonMot'
pod 'MBProgressHUD'
pod 'SpinKit'
end
def testing_pods
inherit! :search_paths
pod 'Quick'
pod 'Nimble'
pod 'RxBlocking'
end
def shared_pods
use_frameworks!
inhibit_all_warnings!
pod 'Boomerang', :git => "https://github.com/synesthesia-it/Boomerang.git", :branch => "master"
pod 'Localize-Swift'
pod 'DateToolsSwift'
pod 'RxSwift'
pod 'RxCocoa'
pod 'SwiftLint'
pod 'Action'
end
target 'ModelLayer' do
model_pods
target 'ModelLayerTests' do
testing_pods
end
end
#Add each app target to this array
['App'].each do |t|
target t do
use_frameworks!
app_pods
target t + "Tests" do
testing_pods
end
end
end