Class: Fastlane::Actions::DeleteKeychainAction
Class Method Summary
collapse
action_name, author, details, output, sh, step_text
Class Method Details
.authors ⇒ Object
25
26
27
|
# File 'lib/fastlane/actions/delete_keychain.rb', line 25
def self.authors
["gin0606"]
end
|
.available_options ⇒ Object
16
17
18
19
20
21
22
23
|
# File 'lib/fastlane/actions/delete_keychain.rb', line 16
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :name,
env_name: "KEYCHAIN_NAME",
description: "Keychain name",
optional: false),
]
end
|
.description ⇒ Object
12
13
14
|
# File 'lib/fastlane/actions/delete_keychain.rb', line 12
def self.description
"Delete keychains and remove them from the search list"
end
|
.is_supported?(platform) ⇒ Boolean
29
30
31
|
# File 'lib/fastlane/actions/delete_keychain.rb', line 29
def self.is_supported?(platform)
true
end
|