Sha256: d952ec69c5ed9f6a2ea1a554639d893f264d6a14ded4d368d9b361d12796970d

Contents?: true

Size: 613 Bytes

Versions: 660

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

660 entries across 660 versions & 5 rubygems

Version Path
fastlane-2.225.0 gym/lib/gym/xcode.rb
fastlane-2.224.0 gym/lib/gym/xcode.rb
fastlane-2.223.1 gym/lib/gym/xcode.rb
fastlane-2.223.0 gym/lib/gym/xcode.rb
fastlane-2.222.0 gym/lib/gym/xcode.rb
fastlane-2.221.1 gym/lib/gym/xcode.rb
fastlane-2.221.0 gym/lib/gym/xcode.rb
fastlane-2.220.0 gym/lib/gym/xcode.rb
fastlane-2.219.0 gym/lib/gym/xcode.rb
fastlane-2.218.0 gym/lib/gym/xcode.rb
fastlane-security-patched-2.216.0 gym/lib/gym/xcode.rb
fastlane-2.217.0 gym/lib/gym/xcode.rb
fastlane-2.216.0 gym/lib/gym/xcode.rb
fastlane-2.215.1 gym/lib/gym/xcode.rb
fastlane-2.215.0 gym/lib/gym/xcode.rb
fastlane-mercafacil-2.214.0 gym/lib/gym/xcode.rb
fastlane-2.214.0 gym/lib/gym/xcode.rb
fastlane-2.213.0 gym/lib/gym/xcode.rb
fastlane-2.212.2 gym/lib/gym/xcode.rb
fastlane_pricing_fix-2.212.1 gym/lib/gym/xcode.rb