-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPodfile
31 lines (23 loc) · 810 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
# Uncomment the next line to define a global platform for your project
platform :ios, '10.2'
target 'weather' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
inhibit_all_warnings!
# Pods for weather
# Utils
pod 'Swinject', '~>2.6.2'
pod 'ViperMcFlurry', '~>1.5.2'
pod 'SwiftLint', '~> 0.33.0'
# UI
pod 'RxDataSources', '~> 4.0'
# Network
pod 'Moya/RxSwift', '~>14.0.0-alpha'
# Storage
pod 'RealmSwift', '~>3.17.0'
end
# Post install hook for generating acknowledgements in settings bundle
post_install do | installer |
require 'fileutils'
FileUtils.cp_r('Pods/Target Support Files/Pods-weather/Pods-weather-acknowledgements.plist', 'Settings.bundle/Acknowledgements.plist', :remove_destination => true)
end