-
Notifications
You must be signed in to change notification settings - Fork 10
/
Podfile
47 lines (44 loc) · 1.13 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
platform :ios, '9.1'
source 'https://github.com/CocoaPods/Specs.git'
def test_pods
pod 'Quick'
pod 'Nimble'
pod 'RxTest'
pod 'FBSnapshotTestCase'
end
target 'AwesomeBlogs' do
use_frameworks!
pod 'Fabric'
pod 'Crashlytics'
pod 'Firebase/Core'
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxDataSources'
pod 'SwiftyJSON'
pod 'ObjectMapper'
pod 'ReactorKit'
pod 'Moya/RxSwift'
pod 'ReachabilitySwift'
pod 'XCGLogger'
pod 'SwiftDate', '~> 4.0'
pod 'EasyAbout'
pod 'Down'
pod 'RealmSwift'
pod 'NotificationBannerSwift'
pod 'KRWordWrapLabel', :git => 'https://github.com/tilltue/KRWordWrapLabel', :branch => 'master'
pod 'Swinject', '~> 2.1.0'
pod 'FAPanels', :git => 'https://github.com/tilltue/FAPanels', :branch => 'master'
target 'AwesomeBlogsTests' do
test_pods
end
target 'AwesomeBlogsUITests' do
test_pods
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.0'
end
end
end