-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPodfile
48 lines (37 loc) · 1.22 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
# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
# ignore all warnings from all dependencies
inhibit_all_warnings!
target 'NyBestArticles' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for NyBestArticles
pod 'Moya', '~> 13.0'
pod 'Kingfisher', '~> 5.0'
pod 'RxSwift', '~> 5'
pod 'RxCocoa', '~> 5'
pod 'Swinject' , '~> 2.7.1'
pod 'SwinjectStoryboard', :git => "https://github.com/Swinject/SwinjectStoryboard" , :branch => 'master'
pod 'RealmSwift'
pod 'ReachabilitySwift'
target 'NyBestArticlesTests' do
inherit! :search_paths
use_frameworks!
# Pods for testing
pod 'SpecLeaks'
pod 'RxBlocking', '~> 5'
pod 'Quick'
pod 'Nimble'
pod 'Swinject' , '~> 2.7.1'
pod 'SwinjectStoryboard', :git => "https://github.com/Swinject/SwinjectStoryboard" , :branch => 'master'
post_install do |installer|
installer.pods_project.targets.each do |target|
if ['SpecLeaks'].include? target.name
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
end
end
end