-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
30 lines (28 loc) · 720 Bytes
/
Podfile
File metadata and controls
30 lines (28 loc) · 720 Bytes
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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
target 'OpenWeather' do
pod 'Alamofire', '~> 4.0'
pod 'Reqres' # network activity logger
pod 'AlamofireObjectMapper', '~> 4.0'
pod 'Swinject', '~> 2.0.0'
pod 'SwinjectStoryboard', '~> 1.0.0'
pod 'SDWebImage'
pod 'Fabric'
pod 'Crashlytics'
pod 'BRYXBanner'
pod 'LightRoute'
end
# Pods for testing
target 'OpenWeatherTests' do
pod 'Alamofire', '~> 4.0'
pod 'Reqres'
pod 'AlamofireObjectMapper', '~> 4.0'
pod 'Swinject', '~> 2.0.0'
pod 'SwinjectStoryboard', '~> 1.0.0'
pod 'SDWebImage'
pod 'Fabric'
pod 'Crashlytics'
pod 'BRYXBanner'
pod 'LightRoute'
end