-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPodfile
More file actions
31 lines (26 loc) · 764 Bytes
/
Podfile
File metadata and controls
31 lines (26 loc) · 764 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
31
platform :ios, "9.0"
source 'git@gitlab.rambler.ru:cocoapods/cocoapods.git'
source 'https://github.com/CocoaPods/Specs.git'
plugin 'cocoapods-keys', {
:project => "ProkrutObjc",
:keys => [
"ParseApplicationId",
"ParseClientKey"
]}
pod 'Parse', '~> 1.12'
pod 'Nimbus/Models', :git => 'https://github.com/rambler-ios/nimbus'
pod 'CorePlot', '2.0'
pod 'InputValidators', '~> 1.0'
pod 'MBProgressHUD', '~> 1.0'
pod 'Typhoon'
pod 'RamblerTyphoonUtils/AssemblyCollector'
pod 'ViperMcFlurry'
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'Nimbus'
target.build_configurations.each do |config|
config.build_settings['ENABLE_STRICT_OBJC_MSGSEND'] = 'NO'
end
end
end
end