class Pod::Configuration
Attributes
disable_system_headermap[R]
enabled_headermap_pods[R]
keep_symlink_reference[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
keep_symlink_reference=(keep_symlink_reference)
click to toggle source
# File lib/cocoapods-headermap/configuration.rb, line 19 def keep_symlink_reference=(keep_symlink_reference) raise Informative, "[cocoapods-headermap]: Expecting Boolean type for `:keep_symlink_reference`!" unless [true, false].include?(keep_symlink_reference) @keep_symlink_reference = keep_symlink_reference end