class Pod::Configuration

Attributes

disable_system_headermap[R]
enabled_headermap_pods[R]

Public Class Methods

disable_system_headermap=(disable_system_headermap) click to toggle source
# File lib/cocoapods-headermap/configuration.rb, line 25
def disable_system_headermap=(disable_system_headermap)
    raise Informative "[cocoapods-headermap]: Expecting Boolean type for `:disable_system_headermap`!" unless [true, false].include?(disable_system_headermap)
    @disable_system_headermap = disable_system_headermap
end
enabled_headermap_pods=(enabled_headermap_pods) click to toggle source
# File lib/cocoapods-headermap/configuration.rb, line 31
def enabled_headermap_pods=(enabled_headermap_pods)
    raise Informative, "[cocoapods-headermap]: Expecting array type for `:enabled_headermap_pods`!" unless enabled_headermap_pods.is_a?(Array)
    @enabled_headermap_pods.concat enabled_headermap_pods
end