Method: Spaceship::Portal::App#update_name!

Defined in:
spaceship/lib/spaceship/portal/app.rb

#update_name!(name, mac: false) ⇒ App

Update name of this App ID.

Returns:

  • (App)

    The app you updated. This is nil if the app can’t be found

[View source]

143
144
145
146
# File 'spaceship/lib/spaceship/portal/app.rb', line 143

def update_name!(name, mac: false)
  app = client.update_app_name!(app_id, name, mac: mac)
  self.class.factory(app)
end