Sha256: 25562513b770d49d060e8e20a05fd18b2a5c1a4d5ef3d91f4d61ce731b3ca6f3

Contents?: true

Size: 768 Bytes

Versions: 493

Compression:

Stored size: 768 Bytes

Contents

module Fastlane
  module Helper
    class XcversionHelper
      def self.find_xcode(req)
        req = Gem::Requirement.new(req.to_s)

        require 'xcode/install'
        installer = XcodeInstall::Installer.new
        installed = installer.installed_versions.reverse
        installed.detect do |xcode|
          req.satisfied_by? Gem::Version.new(xcode.version)
        end
      end

      module Verify
        def self.requirement(req)
          UI.user_error!("Version must be specified") if req.nil? || req.to_s.strip.size == 0
          Gem::Requirement.new(req.to_s)
        rescue Gem::Requirement::BadRequirementError
          UI.user_error!("The requirement '#{req}' is not a valid RubyGems style requirement")
        end
      end
    end
  end
end

Version data entries

493 entries across 493 versions & 1 rubygems

Version Path
fastlane-1.97.1 lib/fastlane/helper/xcversion_helper.rb
fastlane-1.97.0 lib/fastlane/helper/xcversion_helper.rb
fastlane-1.96.0 lib/fastlane/helper/xcversion_helper.rb
fastlane-1.95.0 lib/fastlane/helper/xcversion_helper.rb
fastlane-1.94.1 lib/fastlane/helper/xcversion_helper.rb
fastlane-1.94.0 lib/fastlane/helper/xcversion_helper.rb
fastlane-1.93.1 lib/fastlane/helper/xcversion_helper.rb
fastlane-1.93.0 lib/fastlane/helper/xcversion_helper.rb
fastlane-1.92.0 lib/fastlane/helper/xcversion_helper.rb
fastlane-1.92.0.beta2 lib/fastlane/helper/xcversion_helper.rb
fastlane-1.92.0.beta1 lib/fastlane/helper/xcversion_helper.rb
fastlane-1.91.0 lib/fastlane/helper/xcversion_helper.rb
fastlane-1.90.0 lib/fastlane/helper/xcversion_helper.rb