Module: Gym

Defined in:
lib/gym.rb,
lib/gym/runner.rb,
lib/gym/manager.rb,
lib/gym/options.rb,
lib/gym/project.rb,
lib/gym/version.rb,
lib/gym/detect_values.rb,
lib/gym/error_handler.rb,
lib/gym/commands_generator.rb,
lib/gym/build_command_generator.rb,
lib/gym/package_command_generator.rb,
lib/gym/xcodebuild_fixes/swift_fix.rb,
lib/gym/xcodebuild_fixes/watchkit_fix.rb,
lib/gym/xcodebuild_fixes/package_application_fix.rb

Defined Under Namespace

Classes: BuildCommandGenerator, CommandsGenerator, DetectValues, ErrorHandler, Manager, Options, PackageCommandGenerator, Project, Runner, XcodebuildFixes

Constant Summary collapse

Helper =

you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore

FastlaneCore::Helper
VERSION =
"0.3.4"
DESCRIPTION =
"Building your iOS apps has never been easier"

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.configObject

Returns the value of attribute config.



22
23
24
# File 'lib/gym.rb', line 22

def config
  @config
end

.projectObject

Returns the value of attribute project.



24
25
26
# File 'lib/gym.rb', line 24

def project
  @project
end

Class Method Details

.gymfile_nameObject



31
32
33
# File 'lib/gym.rb', line 31

def gymfile_name
  "Gymfile"
end

.xcode_pathObject



35
36
37
# File 'lib/gym.rb', line 35

def xcode_path
  @path ||= `xcode-select --print-path`.strip
end