Class: Fastlane::Helper::SyncDevicesHelper::Command::DisableAndRename
- Inherits:
-
Base
- Object
- Struct
- Base
- Fastlane::Helper::SyncDevicesHelper::Command::DisableAndRename
- 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
- #name ⇒ String readonly
Attributes inherited from Base
Instance Method Summary collapse
- #description ⇒ String
-
#initialize(device, name) ⇒ DisableAndRename
constructor
A new instance of DisableAndRename.
- #run ⇒ void
Constructor Details
#initialize(device, name) ⇒ DisableAndRename
Returns a new instance of DisableAndRename.
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
#name ⇒ String (readonly)
102 103 104 |
# File 'lib/fastlane/plugin/sync_devices/helper/sync_devices_helper/command.rb', line 102 def name @name end |
Instance Method Details
#description ⇒ 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 |
#run ⇒ void
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 |