Class: Fastlane::Actions::DeleteKeychainAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES
Class Method Summary
collapse
action_name, author, lane_context, method_missing, other_action, output, return_value, sample_return_value, sh, step_text
Class Method Details
.authors ⇒ Object
39
40
41
|
# File 'lib/fastlane/actions/delete_keychain.rb', line 39
def self.authors
["gin0606"]
end
|
.available_options ⇒ Object
20
21
22
23
24
25
26
27
|
# File 'lib/fastlane/actions/delete_keychain.rb', line 20
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :name,
env_name: "KEYCHAIN_NAME",
description: "Keychain name",
optional: false)
]
end
|
.category ⇒ Object
35
36
37
|
# File 'lib/fastlane/actions/delete_keychain.rb', line 35
def self.category
:misc
end
|
.description ⇒ Object
16
17
18
|
# File 'lib/fastlane/actions/delete_keychain.rb', line 16
def self.description
"Delete keychains and remove them from the search list"
end
|
.details ⇒ Object
12
13
14
|
# File 'lib/fastlane/actions/delete_keychain.rb', line 12
def self.details
"Keychains can be deleted after being creating with `create_keychain`"
end
|
.example_code ⇒ Object
29
30
31
32
33
|
# File 'lib/fastlane/actions/delete_keychain.rb', line 29
def self.example_code
[
'delete_keychain(name: "KeychainName")'
]
end
|
.is_supported?(platform) ⇒ Boolean
43
44
45
|
# File 'lib/fastlane/actions/delete_keychain.rb', line 43
def self.is_supported?(platform)
true
end
|