Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 814 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 814 Bytes

MMMSpecs

A CocoaPods spec repository for pods made by Media.Monks.

This is not meant to be a private repo. It was created for convenience of referencing our both published and not yet published (in the official Cocoapods repo) pods. So instead of specifying a github URL for every unpublished pod like this:

pod 'MMMArrayChanges', :git => 'https://github.com/mediamonks/MMMArrayChanges.git'
...

you can now put two lines in the beginning of the Podfile:

source 'https://github.com/mediamonks/MMMSpecs.git'
source 'https://cdn.cocoapods.org/'

(The second line is the main/default CocoaPods spec repo that has to be mentioned when custom sources are used.)

And then reference our pods by their names only:

pod 'MMMArrayChanges'
...