fastlane/lib/fastlane/actions/cocoapods.rb in fastlane-2.101.1 vs fastlane/lib/fastlane/actions/cocoapods.rb in fastlane-2.102.0

- old
+ new

@@ -50,20 +50,10 @@ "Runs `pod install` for the project" end def self.available_options [ - FastlaneCore::ConfigItem.new(key: :clean, - env_name: "FL_COCOAPODS_CLEAN", - description: "Remove SCM directories", - is_string: false, - default_value: true), - FastlaneCore::ConfigItem.new(key: :integrate, - env_name: "FL_COCOAPODS_INTEGRATE", - description: "Integrate the Pods libraries into the Xcode project(s)", - is_string: false, - default_value: true), FastlaneCore::ConfigItem.new(key: :repo_update, env_name: "FL_COCOAPODS_REPO_UPDATE", description: "Add `--repo-update` flag to `pod install` command", is_string: false, default_value: false), @@ -105,10 +95,24 @@ env_name: "FL_COCOAPODS_TRY_REPO_UPDATE_ON_ERROR", description: 'Retry with --repo-update if action was finished with error', optional: true, is_string: false, default_value: false, - type: Boolean) + type: Boolean), + + # Deprecated + FastlaneCore::ConfigItem.new(key: :clean, + env_name: "FL_COCOAPODS_CLEAN", + description: "(Option removed from cocoapods) Remove SCM directories", + deprecated: true, + is_string: false, + default_value: true), + FastlaneCore::ConfigItem.new(key: :integrate, + env_name: "FL_COCOAPODS_INTEGRATE", + description: "(Option removed from cocoapods) Integrate the Pods libraries into the Xcode project(s)", + deprecated: true, + is_string: false, + default_value: true) ] # Please don't add a version parameter to the `cocoapods` action. If you need to specify a version when running # `cocoapods`, please start using a Gemfile and lock the version there # More information https://docs.fastlane.tools/getting-started/ios/setup/#use-a-gemfile end