module Gym

from stackoverflow.com/a/9857493/445598 because of `incompatible encoding regexp match (UTF-8 regexp with ASCII-8BIT string) (Encoding::CompatibilityError)`

Constants

DESCRIPTION
Helper
ROOT
UI
VERSION

Attributes

cache[RW]
config[RW]
project[RW]

Public Class Methods

config=(value) click to toggle source
# File lib/gym.rb, line 24
def config=(value)
  @config = value
  DetectValues.set_additional_default_values
  @cache = {}
end
gymfile_name() click to toggle source
# File lib/gym.rb, line 30
def gymfile_name
  "Gymfile"
end
init_libs() click to toggle source
# File lib/gym.rb, line 34
def init_libs
  # Import all the fixes
  require 'gym/xcodebuild_fixes/swift_fix'
  require 'gym/xcodebuild_fixes/watchkit_fix'
  require 'gym/xcodebuild_fixes/watchkit2_fix'
  require 'gym/xcodebuild_fixes/generic_archive_fix'
  require 'gym/xcodebuild_fixes/package_application_fix'
end