Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I open Podfile for editing [closed]

Tags:

ios

cocoapods

I used CocoaPods with my app I noticed I can't open pod file and the file turn to exec file like the image down, I need to edit it to add new libraries.

enter image description here

like image 388
Ahmed Abdallah Avatar asked Jul 11 '16 12:07

Ahmed Abdallah


2 Answers

Open the Podfile with TextEdit use terminal

 $ cd "your_project_location"
 $ open -a TextEdit Podfile
like image 61
Ahmed Abdallah Avatar answered Oct 04 '22 03:10

Ahmed Abdallah


Open file from Terminal

vim Podfile

like image 36
Yakiv Kovalskyi Avatar answered Oct 04 '22 03:10

Yakiv Kovalskyi