0

Do I have to copy my dependencies from the Kit.podspec to a Podfile, or is there some other way I use the command line tool to get all the dependencies from the .podspec file?

jbehrens94
  • 2,356
  • 6
  • 31
  • 59

1 Answers1

0

If Kit (assuming Kit.podspec is for a pod named Kit) is already in your Podfile then its dependencies will be resolved by Cocoapods in any case.

If you're looking to get just the dependencies from Kit you can use the podspec directive in your Podfile.

You can read more related stuff here and here.

Community
  • 1
  • 1
danf
  • 2,629
  • 21
  • 28