Class: Fastlane::Actions::SecretsManagerStorageAction

Inherits:
Action
  • Object
show all
Defined in:
lib/fastlane/plugin/secrets_manager_storage/actions/secrets_manager_storage_action.rb

Class Method Summary collapse

Class Method Details

.authorsObject



16
17
18
# File 'lib/fastlane/plugin/secrets_manager_storage/actions/secrets_manager_storage_action.rb', line 16

def self.authors
  ["Case Taintor"]
end

.available_optionsObject



23
24
25
# File 'lib/fastlane/plugin/secrets_manager_storage/actions/secrets_manager_storage_action.rb', line 23

def self.available_options
  []
end

.descriptionObject



12
13
14
# File 'lib/fastlane/plugin/secrets_manager_storage/actions/secrets_manager_storage_action.rb', line 12

def self.description
  "This action is not necessary and is unused – see the README for secrets_manager_storage to learn how to use it. Fastlane expects all plugins to have actions."
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


27
28
29
# File 'lib/fastlane/plugin/secrets_manager_storage/actions/secrets_manager_storage_action.rb', line 27

def self.is_supported?(platform)
  true
end

.return_valueObject



20
21
# File 'lib/fastlane/plugin/secrets_manager_storage/actions/secrets_manager_storage_action.rb', line 20

def self.return_value
end

.run(params) ⇒ Object



6
7
8
9
10
# File 'lib/fastlane/plugin/secrets_manager_storage/actions/secrets_manager_storage_action.rb', line 6

def self.run(params)
  UI.message(
    "If you're running this action, you shouldn't be. This action only exists because Fastlane expects all plugins to have actions. See the README.md for secrets_manager_storage to understand how to set the match storage",
  )
end