class Fastlane::Actions::IconBannerRestoreAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/icon_banner/actions/icon_banner_restore_action.rb, line 16
def self.authors
  ['ebelair']
end
description() click to toggle source
# File lib/fastlane/plugin/icon_banner/actions/icon_banner_restore_action.rb, line 12
def self.description
  'Restores the original app icons (can be used after build to clean up the repository)'
end
example_code() click to toggle source
# File lib/fastlane/plugin/icon_banner/actions/icon_banner_restore_action.rb, line 20
def self.example_code
  [
      'icon_banner_restore()'
  ]
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/icon_banner/actions/icon_banner_restore_action.rb, line 26
def self.is_supported?(platform)
  [:ios, :android].include?(platform)
end
run(params) click to toggle source
# File lib/fastlane/plugin/icon_banner/actions/icon_banner_restore_action.rb, line 7
def self.run(params)
  Actions.verify_gem!('icon-banner')
  Helper::IconBannerHelper.restore
end