Method: XcodeBuilder::XcodeBuilder#build

Defined in:
lib/xcode_builder.rb

#buildObject

desc “Build the beta release of the app”



68
69
70
71
72
73
74
75
76
77
78
# File 'lib/xcode_builder.rb', line 68

def build
  clean unless @configuration.skip_clean

  # update the long version number with the date
  @configuration.timestamp_plist if @configuration.timestamp_build

  print "Building Project..."
  success = xcodebuild @configuration.build_arguments, "build"
  raise "** BUILD FAILED **" unless success
  puts "Done"
end