Sha256: c00c731ec15cc950e912c39838d5979553d4e36e26b0f39182bc154e4cf0b4c0

Contents?: true

Size: 361 Bytes

Versions: 30

Compression:

Stored size: 361 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?
        v = xcode_version
        is_pre = v.split('.')[0].to_i < 7
        is_pre
      end
    end
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
gym-1.6.2 lib/gym/xcode.rb
gym-1.6.1 lib/gym/xcode.rb
gym-1.6.0 lib/gym/xcode.rb
gym-1.5.0 lib/gym/xcode.rb
gym-1.4.0 lib/gym/xcode.rb
gym-1.3.0 lib/gym/xcode.rb
gym-1.2.0 lib/gym/xcode.rb
gym-1.1.6 lib/gym/xcode.rb
gym-1.1.5 lib/gym/xcode.rb
gym-1.1.4 lib/gym/xcode.rb
gym-1.1.3 lib/gym/xcode.rb
gym-1.1.2 lib/gym/xcode.rb
gym-1.1.1 lib/gym/xcode.rb
gym-1.1.0 lib/gym/xcode.rb
gym-1.0.0 lib/gym/xcode.rb
gym-0.9.1 lib/gym/xcode.rb
gym-0.9.0 lib/gym/xcode.rb
gym-0.8.5 lib/gym/xcode.rb
gym-0.8.4 lib/gym/xcode.rb
gym-0.8.3 lib/gym/xcode.rb