forked from devxoul/Drrrible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
75 lines (64 loc) · 1.38 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
platform :ios, '12.0'
inhibit_all_warnings!
target 'Drrrible' do
use_frameworks!
# Architecture
pod 'ReactorKit'
# Networking
pod 'Alamofire'
pod 'Moya', '14.0.0-beta.2'
pod 'Moya/RxSwift'
pod 'MoyaSugar',
:git => 'https://github.com/devxoul/MoyaSugar.git',
:branch => 'master'
pod 'MoyaSugar/RxSwift',
:git => 'https://github.com/devxoul/MoyaSugar.git',
:branch => 'master'
pod 'Kingfisher'
# Rx
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxCodable'
pod 'RxDataSources'
pod 'Differentiator'
pod 'RxOptional'
pod 'RxKeyboard'
pod 'RxGesture'
pod 'RxViewController'
pod 'SectionReactor'
# UI
pod 'SnapKit'
pod 'ManualLayout'
pod 'TTTAttributedLabel'
pod 'TouchAreaInsets'
pod 'UICollectionViewFlexLayout'
# Logging
pod 'CocoaLumberjack/Swift'
pod 'Umbrella'
pod 'Umbrella/Firebase'
# Misc.
pod 'Then'
pod 'ReusableKit'
pod 'CGFloatLiteral'
pod 'SwiftyColor'
pod 'SwiftyImage'
pod 'UITextView+Placeholder'
pod 'URLNavigator'
pod 'KeychainAccess'
pod 'Immutable'
pod 'Carte'
# SDK
pod 'Fabric'
pod 'Crashlytics'
pod 'Firebase/Core'
target 'DrrribleTests' do
inherit! :complete
pod 'Stubber'
pod 'Quick'
pod 'Nimble'
end
end
post_install do |installer|
pods_dir = File.dirname(installer.pods_project.path)
at_exit { `ruby #{pods_dir}/Carte/Sources/Carte/carte.rb configure` }
end