Sha256: 7b13b95aa5ab57764c487348d17a9d9495ad2fac098db353a0755311c4908613

Contents?: true

Size: 1.36 KB

Versions: 591

Compression:

Stored size: 1.36 KB

Contents

module Fastlane
  module Actions
    class CleanCocoapodsCacheAction < Action
      def self.run(params)
        Actions.verify_gem!('cocoapods')

        cmd = ['pod cache clean']

        cmd << params[:name].to_s if params[:name]
        cmd << '--all'

        Actions.sh(cmd.join(' '))
      end

      def self.description
        'Remove the cache for pods'
      end

      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

      def self.authors
        ["alexmx"]
      end

      def self.is_supported?(platform)
        [:ios, :mac].include?(platform)
      end

      def self.example_code
        [
          'clean_cocoapods_cache',
          'clean_cocoapods_cache(name: "CACHED_POD")'
        ]
      end

      def self.category
        :building
      end
    end
  end
end

Version data entries

591 entries across 591 versions & 2 rubygems

Version Path
fastlane-2.185.0 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.184.1 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.184.0 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.183.2 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.183.1 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.183.0 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.182.0 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.181.0 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.180.1 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.180.0 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.179.0 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.178.0 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.177.0 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.176.0 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.175.0 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.174.0 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.173.0 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.172.0 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.171.0 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
fastlane-2.170.0 fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb