Raptor
Raptor

Reputation: 54212

Install Pods via .podspec?

I found some iOS libraries in Github that has a .podspec file, but it does not appear in Cocoapods' repository. Is there any chance I can use pod commands to install this library?

Example library: DDSlidingPanels

Upvotes: 1

Views: 1525

Answers (1)

Keith Smiley
Keith Smiley

Reputation: 63903

Yes. You can copy their podspec into another folder such as ~/.cocoapods/repos/whatever/name/version/name.podspec and then CocoaPods will be able to find it.

Upvotes: 2

Related Questions