Sha256: 78c6f0e00525efa10ce1365abaac031add08b034d05a4a3c968e5619668033a2
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 KB
Contents
module PodPrebuild class PostInstallHook def initialize(installer_context) @installer_context = installer_context end def run edit_scheme_for_code_coverage if PodPrebuild::Env.prebuild_stage? diagnose if PodPrebuild::Env.integration_stage? end private def diagnose Pod::UI.section("Diagnosing cocoapods-binary-cache") do PodPrebuild::Diagnosis.new( cache_validation: PodPrebuild::StateStore.cache_validation, standard_sandbox: @installer_context.sandbox, specs: @installer_context.umbrella_targets.map(&:specs).flatten ).run end end def edit_scheme_for_code_coverage return unless Pod::Podfile::DSL.dev_pods_enabled? && @installer_context.sandbox.instance_of?(Pod::PrebuildSandbox) # Modify pods scheme to support code coverage # If we don't prebuild dev pod -> no need to care about this in Pod project # because we setup in the main project (ex. DriverCI scheme) SchemeEditor.edit_to_support_code_coverage(@installer_context.sandbox) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cocoapods-binary-cache-0.1.6 | lib/cocoapods-binary-cache/hooks/post_install.rb |