Module: Gym
- Defined in:
- gym/lib/gym/xcode.rb,
gym/lib/gym/module.rb,
gym/lib/gym/runner.rb,
gym/lib/gym/manager.rb,
gym/lib/gym/options.rb,
gym/lib/gym/detect_values.rb,
gym/lib/gym/error_handler.rb,
gym/lib/gym/commands_generator.rb,
gym/lib/gym/code_signing_mapping.rb,
gym/lib/gym/generators/build_command_generator.rb,
gym/lib/gym/generators/package_command_generator.rb,
gym/lib/gym/xcodebuild_fixes/generic_archive_fix.rb,
gym/lib/gym/generators/package_command_generator_xcode7.rb
Defined Under Namespace
Classes: BuildCommandGenerator, CodeSigningMapping, CommandsGenerator, DetectValues, ErrorHandler, Manager, Options, PackageCommandGenerator, PackageCommandGeneratorXcode7, Runner, Xcode, XcodebuildFixes
Constant Summary collapse
- Helper =
you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
FastlaneCore::Helper
- UI =
FastlaneCore::UI
- Boolean =
Fastlane::Boolean
- ROOT =
Pathname.new(File.('../../..', __FILE__))
- DESCRIPTION =
"Building your iOS apps has never been easier"
Class Attribute Summary collapse
-
.cache ⇒ Object
Returns the value of attribute cache.
-
.config ⇒ Object
Returns the value of attribute config.
-
.project ⇒ Object
Returns the value of attribute project.
Class Method Summary collapse
Class Attribute Details
.cache ⇒ Object
Returns the value of attribute cache.
11 12 13 |
# File 'gym/lib/gym/module.rb', line 11 def cache @cache end |
.config ⇒ Object
Returns the value of attribute config.
7 8 9 |
# File 'gym/lib/gym/module.rb', line 7 def config @config end |
.project ⇒ Object
Returns the value of attribute project.
9 10 11 |
# File 'gym/lib/gym/module.rb', line 9 def project @project end |
Class Method Details
.gymfile_name ⇒ Object
19 20 21 |
# File 'gym/lib/gym/module.rb', line 19 def gymfile_name "Gymfile" end |
.init_libs ⇒ Object
23 24 25 26 |
# File 'gym/lib/gym/module.rb', line 23 def init_libs # Import all the fixes require 'gym/xcodebuild_fixes/generic_archive_fix' end |