class Gym::Xcode
Public Class Methods
legacy_api_deprecated?()
click to toggle source
# File gym/lib/gym/xcode.rb, line 22 def legacy_api_deprecated? FastlaneCore::Helper.xcode_at_least?('8.3') end
pre_7?()
click to toggle source
Below Xcode
7 (which offers a new nice API to sign the app)
# File gym/lib/gym/xcode.rb, line 15 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
xcode_path()
click to toggle source
# File gym/lib/gym/xcode.rb, line 6 def xcode_path Helper.xcode_path end
xcode_version()
click to toggle source
# File gym/lib/gym/xcode.rb, line 10 def xcode_version Helper.xcode_version end