Class: Deliver::UploadAssets

Inherits:
Object
  • Object
show all
Defined in:
lib/deliver/upload_assets.rb

Instance Method Summary collapse

Instance Method Details

#upload(options) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/deliver/upload_assets.rb', line 3

def upload(options)
  app = options[:app]

  v = app.edit_version(platform: options[:platform])
  UI.user_error!("Could not find a version to edit for app '#{app.name}'") unless v

  if options[:app_icon]
    UI.message("Uploading app icon...")
    v.upload_large_icon!(options[:app_icon])
  end

  if options[:apple_watch_app_icon]
    UI.message("Uploading apple watchapp icon...")
    v.upload_watch_icon!(options[:apple_watch_app_icon])
  end

  v.save!
end