Method: Pod::Podfile::DSL#pre_integrate

Defined in:
lib/cocoapods-core/podfile/dsl.rb

#pre_integrate(&block) ⇒ void

This method returns an undefined value.

This hook allows you to make changes before the project is written to disk.

It receives the [Pod::Installer] as its only argument.

Examples:

Customizing the dependencies before integration


pre_integrate do |installer|
  # perform some changes on dependencies
end

Raises:

[View source]

954
955
956
957
# File 'lib/cocoapods-core/podfile/dsl.rb', line 954

def pre_integrate(&block)
  raise Informative, 'Specifying multiple `pre_integrate` hooks is unsupported.' if @pre_integrate_callback
  @pre_integrate_callback = block
end