Class: Gym::Xcode
- Inherits:
-
Object
- Object
- Gym::Xcode
- Defined in:
- lib/gym/xcode.rb
Class Method Summary collapse
-
.pre_7? ⇒ Boolean
Below Xcode 7 (which offers a new nice API to sign the app).
- .xcode_path ⇒ Object
- .xcode_version ⇒ Object
Class Method Details
.pre_7? ⇒ Boolean
Below Xcode 7 (which offers a new nice API to sign the app)
13 14 15 16 17 18 |
# File 'lib/gym/xcode.rb', line 13 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 ⇒ Object
4 5 6 |
# File 'lib/gym/xcode.rb', line 4 def xcode_path Helper.xcode_path end |
.xcode_version ⇒ Object
8 9 10 |
# File 'lib/gym/xcode.rb', line 8 def xcode_version Helper.xcode_version end |