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'
...