class Fastlane::Actions::TestbmAction
Public Class Methods
available_options()
click to toggle source
# File lib/fastlane/plugin/testbm/actions/testbm_action.rb, line 27 def self.available_options [ # FastlaneCore::ConfigItem.new(key: :your_option, # env_name: "TESTBM_YOUR_OPTION", # description: "A description of your option", # optional: false, # type: String) ] end
description()
click to toggle source
# File lib/fastlane/plugin/testbm/actions/testbm_action.rb, line 10 def self.description "A Test plugin" end
details()
click to toggle source
# File lib/fastlane/plugin/testbm/actions/testbm_action.rb, line 22 def self.details # Optional: "Just a test plugin" end
is_supported?(platform)
click to toggle source
# File lib/fastlane/plugin/testbm/actions/testbm_action.rb, line 37 def self.is_supported?(platform) # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example) # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform # # [:ios, :mac, :android].include?(platform) true end
return_value()
click to toggle source
# File lib/fastlane/plugin/testbm/actions/testbm_action.rb, line 18 def self.return_value # If your method provides a return value, you can describe here what it does end
run(params)
click to toggle source
# File lib/fastlane/plugin/testbm/actions/testbm_action.rb, line 6 def self.run(params) UI.message("The testbm plugin is working!") end