No commit activity in last 3 years
No release in over 3 years
Store Pods to upload to S3 or download from S3
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

cocoapods-static-store

NOTE: This plugin is in very early stages so YMMV and avoid running on repos with unstaged changes.

cocoapods-store is a plugin that lets you load push and pull dependencies to and from an s3 or MinIO bucket.

Pushes are keyed against the commit they are linked to the commit allowing them to be pulled on demand.

This provides a faster alternative to pulling repos separately when running pod install or pod update.

This gives several benefits:

  • Pods only have to be installed once for the given commit avoiding multiple requests to Github and other stores for subsequent installs
  • Continuous integration agents can pull from the store helping to decrease build times

Installation

$ gem install cocoapods-static-store

Usage

$ pod store push --bucket "cocoapods-store" --aws-key "KEY" --aws-secret "SECRET"
$ pod store pull --bucket "cocoapods-store" --aws-key "KEY" --aws-secret "SECRET"

It is recommended that you create a .cocoapods-store.yml rather than passing arguments. The yaml should have the following format:

endpoint: "only use this property with Minio"
bucket: "my-pod-store"
aws-key: "KEY"
aws-secret: "SECRET"

With a yaml file in place, you can simply call:

$ pod store push
$ pod store pull

Roadmap

  • S3 support
  • MinIO support
  • Implicit Installation
  • Cache built frameworks