module Pod::Podfile::DSL

Public Class Methods

enable_prebuild_patch(value) click to toggle source

when enable, `pod` function will skip all pods without 'prebuild => true'

# File lib/cocoapods-binary/helper/feature_switches.rb, line 17
def self.enable_prebuild_patch(value)
    @@enable_prebuild_patch = value
end

Public Instance Methods

all_binary!() click to toggle source

Enable prebuiding for all pods it has a lower priority to other binary settings

# File lib/cocoapods-binary/Main.rb, line 11
def all_binary!
    DSL.prebuild_all = true
end
enable_bitcode_for_prebuilt_frameworks!() click to toggle source

Enable bitcode for prebuilt frameworks

# File lib/cocoapods-binary/Main.rb, line 16
def enable_bitcode_for_prebuilt_frameworks!
    DSL.bitcode_enabled = true
end
keep_source_code_for_prebuilt_frameworks!() click to toggle source

Don't remove source code of prebuilt pods It may speed up the pod install if git didn't include the `Pods` folder

# File lib/cocoapods-binary/Main.rb, line 23
def keep_source_code_for_prebuilt_frameworks!
    DSL.dont_remove_source_code = true
end