Class: Gym::PackageCommandGeneratorXcode7

Inherits:
Object
  • Object
show all
Defined in:
lib/gym/generators/package_command_generator_xcode7.rb

Overview

Responsible for building the fully working xcodebuild command

Class Method Summary collapse

Class Method Details

.config_pathObject

The path the config file we use to sign our app



60
61
62
63
# File 'lib/gym/generators/package_command_generator_xcode7.rb', line 60

def config_path
  Gym.cache[:config_path] ||= "#{Tempfile.new('gym').path}_config.plist"
  return Gym.cache[:config_path]
end

.dsym_pathObject

The path the the dsym file for this app. Might be nil



55
56
57
# File 'lib/gym/generators/package_command_generator_xcode7.rb', line 55

def dsym_path
  Dir[BuildCommandGenerator.archive_path + "/**/*.app.dSYM"].last
end

.generateObject



12
13
14
15
16
17
18
19
20
21
22
# File 'lib/gym/generators/package_command_generator_xcode7.rb', line 12

def generate
  print_legacy_information unless Helper.fastlane_enabled?

  parts = ["/usr/bin/xcrun #{XcodebuildFixes.wrap_xcodebuild} -exportArchive"]
  parts += options
  parts += pipe

  File.write(config_path, config_content) # overwrite everytime. Could be optimized

  parts
end

.ipa_pathObject



43
44
45
46
47
48
49
50
51
52
# File 'lib/gym/generators/package_command_generator_xcode7.rb', line 43

def ipa_path
  unless Gym.cache[:ipa_path]
    path = Dir[File.join(temporary_output_path, "*.ipa")].last
    ErrorHandler.handle_empty_archive unless path

    Gym.cache[:ipa_path] = File.join(temporary_output_path, "#{Gym.config[:output_name]}.ipa")
    FileUtils.mv(path, Gym.cache[:ipa_path]) if File.expand_path(path).downcase != File.expand_path(Gym.cache[:ipa_path]).downcase
  end
  Gym.cache[:ipa_path]
end

.optionsObject



24
25
26
27
28
29
30
31
32
# File 'lib/gym/generators/package_command_generator_xcode7.rb', line 24

def options
  options = []

  options << "-exportOptionsPlist '#{config_path}'"
  options << "-archivePath '#{BuildCommandGenerator.archive_path}'"
  options << "-exportPath '#{temporary_output_path}'"

  options
end

.pipeObject



34
35
36
# File 'lib/gym/generators/package_command_generator_xcode7.rb', line 34

def pipe
  [""]
end

.temporary_output_pathObject

We export the ipa into this directory, as we can’t specify the ipa file directly



39
40
41
# File 'lib/gym/generators/package_command_generator_xcode7.rb', line 39

def temporary_output_path
  Gym.cache[:temporary_output_path] ||= "#{Tempfile.new('gym').path}.gym_output"
end