forked from marcelo-schroeder/IFACoreUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
37 lines (30 loc) · 1.63 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
platform :ios, '10.0'
workspace 'IFACoreUI'
project 'IFACoreUI/IFACoreUI.xcodeproj'
use_frameworks!
target :IFACoreUI do
# pod 'IFAFoundation'
# pod 'IFAFoundation', :git => 'https://github.com/marcelo-schroeder/IFAFoundation.git', :branch => 'dev_iOS10_Cocoapods1'
# pod 'IFAFoundation', :git => 'https://github.com/marcelo-schroeder/IFAFoundation.git', :branch => 'development'
#pod 'IFAFoundation', :path => '/Users/mschroeder/myfiles/projects/Xcode/IFAFoundation/IFAFoundation_development'
pod 'IFAFoundation', :path => '/Users/bishalbhansali/MyDocuments/DFSI/OGNPods/IFAFoundation'
target :IFACoreUITests do
# pod 'IFATestingSupport'
#pod 'IFATestingSupport', :git => 'https://github.com/marcelo-schroeder/IFATestingSupport.git', :tag => 'v0.1.1'
# pod 'IFATestingSupport', :git => 'https://github.com/marcelo-schroeder/IFATestingSuport.git', :branch => 'development'
# pod 'IFATestingSupport', :path => '/Users/mschroeder/myfiles/projects/Xcode/IFATestingSupport/IFATestingSupport_development'
pod 'IFATestingSupport', :path => '/Users/bishalbhansali/MyDocuments/DFSI/OGNPods/IFATestingSupport'
pod 'OCHamcrest', :inhibit_warnings => true
pod 'OCMock', :inhibit_warnings => true
end
end
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
target.build_configurations.each do |config|
# Restrict to extension API's only - Cocoapods is somehow coming to the conclusion that this should be set to NO, so this reverts that setting.
if target.name == 'IFAFoundation'
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'YES'
end
end
end
end