Sha256: d952ec69c5ed9f6a2ea1a554639d893f264d6a14ded4d368d9b361d12796970d

Contents?: true

Size: 613 Bytes

Versions: 661

Compression:

Stored size: 613 Bytes

Contents

require_relative 'module'

module Gym
  class Xcode
    class << self
      def xcode_path
        Helper.xcode_path
      end

      def xcode_version
        Helper.xcode_version
      end

      # Below Xcode 7 (which offers a new nice API to sign the app)
      def pre_7?
        UI.user_error!("Unable to locate Xcode. Please make sure to have Xcode installed on your machine") if xcode_version.nil?
        v = xcode_version
        is_pre = v.split('.')[0].to_i < 7
        is_pre
      end

      def legacy_api_deprecated?
        FastlaneCore::Helper.xcode_at_least?('8.3')
      end
    end
  end
end

Version data entries

661 entries across 661 versions & 5 rubygems

Version Path
fastlane-2.150.0.rc7 gym/lib/gym/xcode.rb
fastlane-2.150.0.rc6 gym/lib/gym/xcode.rb
fastlane-2.150.0.rc5 gym/lib/gym/xcode.rb
fastlane-2.150.0.rc4 gym/lib/gym/xcode.rb
fastlane-2.150.0.rc3 gym/lib/gym/xcode.rb
fastlane-2.150.0.rc2 gym/lib/gym/xcode.rb
fastlane-2.150.0.rc1 gym/lib/gym/xcode.rb
fastlane-2.149.1 gym/lib/gym/xcode.rb
fastlane-2.149.0 gym/lib/gym/xcode.rb
fastlane-2.148.1 gym/lib/gym/xcode.rb
fastlane-2.148.0 gym/lib/gym/xcode.rb
fastlane-2.147.0 gym/lib/gym/xcode.rb
fastlane-2.146.1 gym/lib/gym/xcode.rb
fastlane-2.146.0 gym/lib/gym/xcode.rb
fastlane-2.145.0 gym/lib/gym/xcode.rb
fastlane-2.144.0 gym/lib/gym/xcode.rb
fastlane-2.143.0 gym/lib/gym/xcode.rb
fastlane-2.142.0 gym/lib/gym/xcode.rb
fastlane-2.141.0 gym/lib/gym/xcode.rb
fastlane-2.140.0 gym/lib/gym/xcode.rb