Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cocoapods no integrate in Pod file

So I have multiple projects all of which use cocoapods. For one of the projects we need to use the --no-integrate flag I was wondering can we move this declaration to the podfile some how so we don't have to remember the difference every time we go into that file.

like image 340
Chip Snyder Avatar asked Mar 17 '15 18:03

Chip Snyder


1 Answers

In the CocoaPods 1.0 betas, you can use:

install! 'cocoapods', :integrate_targets => false

In your Podfile.

like image 194
Keith Smiley Avatar answered Oct 01 '22 22:10

Keith Smiley