-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPodfile
46 lines (38 loc) · 1.03 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
platform :ios, '9.0'
use_frameworks!
target 'Jogger' do
pod 'StatefulViewController', '~> 3.0'
pod 'EasyPeasy'
pod 'SwiftyFORM'
pod 'Swinject', '~> 2.0.0'
pod 'SwinjectStoryboard', '~> 1.0.0'
pod 'Himotoki', '~> 3.0'
pod 'ReactiveSwift'
pod 'ReactiveCocoa'
pod 'SwiftDate'
pod 'SwiftMessages'
pod 'MGSwipeTableCell'
pod 'RangeSeekSlider'
pod 'Firebase/Database'
pod 'Firebase/Auth'
target 'JoggerTests' do
inherit! :search_paths
pod 'Firebase/Database'
pod 'Firebase/Auth'
pod 'Quick'
pod 'Nimble'
end
target 'JoggerE2ETests' do
project 'Jogger'
inherit! :search_paths # Required for not double-linking libraries in the app and test targets.
pod 'EarlGrey'
pod 'Fakery'
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end