Class: Pod::Podfile
- Inherits:
-
Object
- Object
- Pod::Podfile
- Defined in:
- lib/cocoapods/pod_file_extension.rb
Instance Method Summary collapse
Instance Method Details
#original_post_install! ⇒ Object
5 |
# File 'lib/cocoapods/pod_file_extension.rb', line 5 alias original_post_install! post_install! |
#post_install!(installer) ⇒ Object
6 7 8 9 10 11 12 13 14 |
# File 'lib/cocoapods/pod_file_extension.rb', line 6 def post_install!(installer) puts "post_install! #{self}" project = installer.pods_project clean_spm_dependencies_from_target(project) install_remote_spm_dependencies(project) install_local_spm_dependencies(project) run_swift_fix_for_project(project) original_post_install!(installer) end |