No commit activity in last 3 years
No release in over 3 years
Adds CocoaPods post-install action to use Whole Module Optimization for Swift files in release mode.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.3
~> 0
 Project Readme

cocoapods-wholemodule

A CocoaPods plugin to use Whole Module Optimization for Swift files when compiling in release mode.

CocoaPods sensibly uses Apple's defaults for the Pods project, which means that if you want your pods to run with Whole Module Optimization enabled in release mode, you need to add a post install hook. The cocoapods-wholemodule plugin takes care of the boilerplate so you can add that in just one line.

Installation

$ gem install cocoapods-wholemodule

Usage with default configuration names

Add cocoapods-wholemodule to your Podfile:

plugin 'cocoapods-wholemodule'

Now, for configurations named Release, your Swift files will automatically be compiled with Whole Module Optimization enabled.

Usage with custom configuration names

Add an option specificying which configuration names should be compiled with Whole Module Optimization enabled:

plugin 'cocoapods-wholemodule', :wholemodule => 'CustomRelease'

Now, for configurations named CustomRelease, your Swift files will automatically be compiled with Whole Module Optimization enabled.

To specify multiple configuration names, supply an array of names:

plugin 'cocoapods-wholemodule', :wholemodule => ['CustomRelease', 'SpecialName']

Now, for configurations named CustomRelease and SpecialName, your Swift files will automatically be compiled with Whole Module Optimization enabled.