Class: Fastlane::Helper::SyncDevicesHelper::Command::DisableAndRename

Inherits:
Base
  • Object
show all
Defined in:
lib/fastlane/plugin/sync_devices/helper/sync_devices_helper/command.rb

Overview

Command to disable and rename an existing device.

Instance Attribute Summary collapse

Attributes inherited from Base

#device

Instance Method Summary collapse

Constructor Details

#initialize(device, name) ⇒ DisableAndRename

Returns a new instance of DisableAndRename.

Parameters:

  • device (Spaceship::ConnectAPI::Device)
  • name (String)

106
107
108
109
# File 'lib/fastlane/plugin/sync_devices/helper/sync_devices_helper/command.rb', line 106

def initialize(device, name)
  super(device)
  @name = name
end

Instance Attribute Details

#nameString (readonly)

Returns:

  • (String)

102
103
104
# File 'lib/fastlane/plugin/sync_devices/helper/sync_devices_helper/command.rb', line 102

def name
  @name
end

Instance Method Details

#descriptionString

Returns:

  • (String)

121
122
123
# File 'lib/fastlane/plugin/sync_devices/helper/sync_devices_helper/command.rb', line 121

def description
  "Disabled and renamed #{device.name} to #{name} (#{device.udid})"
end

#runvoid

This method returns an undefined value.


112
113
114
115
116
117
118
# File 'lib/fastlane/plugin/sync_devices/helper/sync_devices_helper/command.rb', line 112

def run
  Spaceship::ConnectAPI::Device.modify(
    device.udid,
    enabled: false,
    new_name: name
  )
end