Method: Fastlane::Actions::CleanCocoapodsCacheAction.available_options

Defined in:
fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb

.available_optionsObject


19
20
21
22
23
24
25
26
27
28
29
30
# File 'fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb', line 19

def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :name,
                                 env_name: "FL_CLEAN_COCOAPODS_CACHE_DEVELOPMENT",
                                 description: "Pod name to be removed from cache",
                                 optional: true,
                                 is_string: true,
                                 verify_block: proc do |value|
                                   UI.user_error!("You must specify pod name which should be removed from cache") if value.to_s.empty?
                                 end)
  ]
end