produce/lib/produce/developer_center.rb in fastlane-2.74.1 vs produce/lib/produce/developer_center.rb in fastlane-2.75.0.beta.20180109010003

- old
+ new

@@ -43,16 +43,16 @@ end def create_new_app ENV["CREATED_NEW_APP_ID"] = Time.now.to_i.to_s if app_exists? - UI.success "[DevCenter] App '#{Produce.config[:app_identifier]}' already exists, nothing to do on the Dev Center" + UI.success("[DevCenter] App '#{Produce.config[:app_identifier]}' already exists, nothing to do on the Dev Center") ENV["CREATED_NEW_APP_ID"] = nil # Nothing to do here else app_name = Produce.config[:app_name] - UI.message "Creating new app '#{app_name}' on the Apple Dev Center" + UI.message("Creating new app '#{app_name}' on the Apple Dev Center") app = Spaceship.app.create!(bundle_id: app_identifier, name: app_name, enable_services: enable_services, mac: Produce.config[:platform] == "osx") @@ -61,16 +61,16 @@ UI.important("Your app name includes non-ASCII characters, which are not supported by the Apple Developer Portal.") UI.important("To fix this a unique (internal) name '#{app.name}' has been created for you. Your app's real name '#{Produce.config[:app_name]}'") UI.important("will still show up correctly on iTunes Connect and the App Store.") end - UI.message "Created app #{app.app_id}" + UI.message("Created app #{app.app_id}") UI.crash!("Something went wrong when creating the new app - it's not listed in the apps list") unless app_exists? ENV["CREATED_NEW_APP_ID"] = Time.now.to_i.to_s - UI.success "Finished creating new app '#{app_name}' on the Dev Center" + UI.success("Finished creating new app '#{app_name}' on the Dev Center") end return true end