forked from SnapKit/Masonry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
47 lines (36 loc) · 1.44 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
workspace 'Masonry'
platform :ios, '8.0'
project 'Examples/Masonry iOS Examples'
target 'Masonry iOS Examples' do
pod 'Masonry', :path => './'
end
target 'Masonry iOS Tests' do
project 'Tests/Masonry Tests'
pod 'Expecta'
end
target 'MasonryTestsLoader' do
project 'Tests/Masonry Tests'
pod 'Masonry', :path => './'
end
# add settings needed to generate test coverage data
post_install do |installer|
COV_TARGET_NAME = "Pods-MasonryTestsLoader"
EXPORT_ENV_PHASE_NAME = "Export Environment Vars"
EXPORT_ENV_PHASE_SCRIPT = "export | egrep '( BUILT_PRODUCTS_DIR)|(CURRENT_ARCH)|(OBJECT_FILE_DIR_normal)|(SRCROOT)|(OBJROOT)' > $SRCROOT/../script/env.sh"
# find target
classy_pods_target = installer.pods_project.targets.find{ |target| target.name == COV_TARGET_NAME }
unless classy_pods_target
raise ::Pod::Informative, "Failed to find '" << COV_TARGET_NAME << "' target"
end
# add build settings
classy_pods_target.build_configurations.each do |config|
config.build_settings['GCC_GENERATE_TEST_COVERAGE_FILES'] = 'YES'
config.build_settings['GCC_INSTRUMENT_PROGRAM_FLOW_ARCS'] = 'YES'
end
# add build phase
phase = classy_pods_target.shell_script_build_phases.select{ |bp| bp.name == EXPORT_ENV_PHASE_NAME }.first ||
classy_pods_target.new_shell_script_build_phase(EXPORT_ENV_PHASE_NAME)
phase.shell_path = "/bin/sh"
phase.shell_script = EXPORT_ENV_PHASE_SCRIPT
phase.show_env_vars_in_log = '0'
end