workspace 'Masonry' platform :ios, '6.0' xcodeproj 'Examples/Masonry iOS Examples' target 'Masonry iOS Examples', :exclusive => true do pod 'Masonry', :path => './' end target 'Masonry iOS Tests', :exclusive => true do xcodeproj 'Tests/Masonry Tests' pod 'Expecta' end target 'MasonryTestsLoader', :exclusive => true do xcodeproj 'Tests/Masonry Tests' pod 'Masonry', :path => './' end # add settings needed to generate test coverage data post_install do |installer| COV_TARGET_NAME = "Pods-MasonryTestsLoader-Masonry" 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.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