-
Notifications
You must be signed in to change notification settings - Fork 67
/
Podfile
executable file
·37 lines (29 loc) · 1.28 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
deployment_target = '13.0'
platform :ios, deployment_target
target 'UpcomingMovies' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for UpcomingMovies
pod 'SwiftLint'
pod 'Swinject'
pod 'Kingfisher'
pod 'CollectionViewSlantedLayout', '~> 3.1'
pod 'DLProgressHUD', '~> 1.0'
pod 'UpcomingMoviesDomain', :path => 'UpcomingMoviesDomain/', :testspecs => ['UpcomingMoviesDomainTests']
pod 'UpcomingMoviesDomain/TestDoubles', :path => 'UpcomingMoviesDomain/'
pod 'UpcomingMoviesData', :path => 'UpcomingMoviesData/', :testspecs => ['UpcomingMoviesDataTests']
pod 'UpcomingMoviesData/TestDoubles', :path => 'UpcomingMoviesData/'
pod 'CoreDataInfrastructure', :path => 'CoreDataInfrastructure/', :testspecs => ['CoreDataInfrastructureTests']
pod 'NetworkInfrastructure', :path => 'NetworkInfrastructure/', :testspecs => ['NetworkInfrastructureTests']
pod 'NetworkInfrastructure/TestDoubles', :path => 'NetworkInfrastructure/'
target 'UpcomingMoviesTests' do
inherit! :search_paths
end
post_install do |pi|
pi.pods_project.targets.each do |t|
t.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = deployment_target
end
end
end
end