Method: Pod::Podfile::DSL#pre_integrate
- Defined in:
- lib/cocoapods-core/podfile/dsl.rb
permalink #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.
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 |