class Dean::Build

Public Instance Methods

build_all_environments() click to toggle source
# File lib/dean/commands/build.rb, line 9
def build_all_environments
  configurations_helper = ConfigurationHelper.new
  configurations_helper.all_environments.each do |environment|
    build_environment environment
  end
end
build_environment(environment) click to toggle source
# File lib/dean/commands/build.rb, line 16
def build_environment(environment)
  build_settings = ConfigurationHelper.new().build_settings_for_environment environment

  if not build_configuration_exists? build_settings[:build_configuration]
    fail IOError, "Build configuration #{build_settings[:build_configuration]} does not exist!"
  end

  if not provisioning_profile_exists? build_settings[:provisioning_profile]
    fail IOError, "Provisioning profile #{build_settings[:provisioning_profile]} not found on disk!"
  end

  version = ProjectVersionHelper.new().version_from_plist environment[:plist]

  ipa_path = "#{Dir.pwd}/#{build_settings[:location]}/#{version}"

  if ipa_lookup ipa_path
    build_options = "--workspace #{build_settings[:workspace]}"
    build_options += " --project #{build_settings[:project]}"
    build_options += " -c #{build_settings[:build_configuration]}"
    build_options += " -s #{build_settings[:scheme]}"
    build_options += " -m #{build_settings[:provisioning_profile]}"
    build_options += " -i \"#{build_settings[:signin_identity]}\""
    build_options += " --clean"
    build_options += " --archive"

    system "ipa build #{build_options}"

    # Once build succeeded move .ipa and .dSYM in the proper folder
    FileUtils.mkdir_p ipa_path
    ipa_name = ipa_name_from_project build_settings[:project]
    dSYM_name = dSYM_name_from_project build_settings[:project]
    FileUtils.mv "#{Dir.pwd}/#{ipa_name}", "#{ipa_path}/#{ipa_name}"
    FileUtils.mv "#{Dir.pwd}/#{dSYM_name}", "#{ipa_path}/#{dSYM_name}"
  else
    puts "Skipping".yellow
  end
end

Private Instance Methods

build_configuration_exists?(build_configuration) click to toggle source
# File lib/dean/commands/build.rb, line 66
def build_configuration_exists?(build_configuration)
  # This is **very** dirty
  matches = `xcodeproj show Bizzby.xcodeproj --format hash | grep -w #{build_configuration} | wc -l`
  matches.to_i > 0
end
dSYM_name_from_project(project) click to toggle source
# File lib/dean/commands/build.rb, line 80
def dSYM_name_from_project(project)
  File.basename(project, ".xcodeproj") + ".app.dSYM.zip"
end
ipa_lookup(path) click to toggle source
# File lib/dean/commands/build.rb, line 56
def ipa_lookup(path)
  if Dir.exists? path
    puts "A build was found already. Do you wish to continue and override it? (y/n)"
    answer = $stdin.gets.chomp!
    return answer == 'y'
  else
    return true
  end
end
ipa_name_from_project(project) click to toggle source
# File lib/dean/commands/build.rb, line 76
def ipa_name_from_project(project)
  File.basename(project, ".xcodeproj") + ".ipa"
end
provisioning_profile_exists?(profile) click to toggle source
# File lib/dean/commands/build.rb, line 72
def provisioning_profile_exists?(profile)
  File.exists? "#{Dir.pwd}/#{profile}"
end