Sha256: 6ee800869f66b80c846cbf2016f371f8209b8f9b5d7b9b7f0f8d9dc82f1dc231

Contents?: true

Size: 490 Bytes

Versions: 107

Compression:

Stored size: 490 Bytes

Contents

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
    end
  end
end

Version data entries

107 entries across 107 versions & 2 rubygems

Version Path
fastlane-2.5.0 gym/lib/gym/xcode.rb
fastlane-2.4.0 gym/lib/gym/xcode.rb
fastlane-2.3.1 gym/lib/gym/xcode.rb
fastlane-2.3.0 gym/lib/gym/xcode.rb
fastlane-2.2.0 gym/lib/gym/xcode.rb
fastlane-2.1.3 gym/lib/gym/xcode.rb
fastlane-2.1.2 gym/lib/gym/xcode.rb
fastlane-2.1.1 gym/lib/gym/xcode.rb
gym-2.0.0 lib/gym/xcode.rb
fastlane-2.1.0 gym/lib/gym/xcode.rb
fastlane-2.0.5 gym/lib/gym/xcode.rb
fastlane-2.0.4 gym/lib/gym/xcode.rb
fastlane-2.0.3 gym/lib/gym/xcode.rb
fastlane-2.0.2 gym/lib/gym/xcode.rb
fastlane-2.0.1 gym/lib/gym/xcode.rb
gym-1.13.0 lib/gym/xcode.rb
gym-1.12.1 lib/gym/xcode.rb
gym-1.12.0 lib/gym/xcode.rb
gym-1.11.3 lib/gym/xcode.rb
gym-1.11.2 lib/gym/xcode.rb