Sha256: 6b304c57aec2c9b41cdcece9b369eaa30a88e0bf8669535e27a254484e167829

Contents?: true

Size: 1.28 KB

Versions: 13

Compression:

Stored size: 1.28 KB

Contents

module Fastlane
  module Actions
    class XcversionAction < Action
      def self.run(params)
        version = params[:version]
        xcode = Helper::XcversionHelper.find_xcode(version)
        UI.user_error!("Cannot find an installed Xcode satisfying '#{version}'") if xcode.nil?

        UI.verbose("Found Xcode version #{xcode.version} at #{xcode.path} satisfying requirement #{version}")
        UI.message("Setting Xcode version to #{xcode.path} for all build steps")

        ENV["DEVELOPER_DIR"] = File.join(xcode.path, "/Contents/Developer")
      end

      def self.description
        "Select an Xcode to use by version specifier"
      end

      def self.author
        "oysta"
      end

      def self.available_options
        [
          FastlaneCore::ConfigItem.new(key: :version,
                                       env_name: "FL_XCODE_VERSION",
                                       description: "The version of Xcode to select specified as a Gem::Version requirement string (e.g. '~> 7.1.0')",
                                       optional: false,
                                       verify_block: Helper::XcversionHelper::Verify.method(:requirement))
        ]
      end

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

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
fastlane-1.104.0 lib/fastlane/actions/xcversion.rb
fastlane-1.103.0 lib/fastlane/actions/xcversion.rb
fastlane-1.102.0 lib/fastlane/actions/xcversion.rb
fastlane-1.101.0 lib/fastlane/actions/xcversion.rb
fastlane-1.100.0 lib/fastlane/actions/xcversion.rb
fastlane-1.99.0 lib/fastlane/actions/xcversion.rb
fastlane-1.98.0 lib/fastlane/actions/xcversion.rb
fastlane-1.97.2 lib/fastlane/actions/xcversion.rb
fastlane-1.97.1 lib/fastlane/actions/xcversion.rb
fastlane-1.97.0 lib/fastlane/actions/xcversion.rb
fastlane-1.96.0 lib/fastlane/actions/xcversion.rb
fastlane-1.95.0 lib/fastlane/actions/xcversion.rb
fastlane-1.94.1 lib/fastlane/actions/xcversion.rb