Method: XcodeBuilder::XcodeBuilder#build
- Defined in:
- lib/xcode_builder.rb
#build ⇒ Object
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. if @configuration. print "Building Project..." success = xcodebuild @configuration.build_arguments, "build" raise "** BUILD FAILED **" unless success puts "Done" end |