class Fastlane::Actions::GenDevWorkspaceAction
Public Class Methods
available_options()
click to toggle source
# File lib/fastlane/plugin/gen_dev_workspace/actions/gen_dev_workspace_action.rb, line 25 def self.available_options [ # FastlaneCore::ConfigItem.new(key: :your_option, # env_name: "GEN_DEV_WORKSPACE_YOUR_OPTION", # description: "A description of your option", # optional: false, # type: String) ] end
description()
click to toggle source
# File lib/fastlane/plugin/gen_dev_workspace/actions/gen_dev_workspace_action.rb, line 8 def self.description "Configures an xcworkspace with specified xcodeprojs" end
details()
click to toggle source
# File lib/fastlane/plugin/gen_dev_workspace/actions/gen_dev_workspace_action.rb, line 20 def self.details # Optional: "By passing in an array of xcodeproj paths and an xcworkspace, gen_dev_workspace will return a a workspace with the xcodeprojs embedded within it" end
is_supported?(platform)
click to toggle source
# File lib/fastlane/plugin/gen_dev_workspace/actions/gen_dev_workspace_action.rb, line 35 def self.is_supported?(platform) # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example) # See: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md # # [:ios, :mac, :android].include?(platform) true end
return_value()
click to toggle source
# File lib/fastlane/plugin/gen_dev_workspace/actions/gen_dev_workspace_action.rb, line 16 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/gen_dev_workspace/actions/gen_dev_workspace_action.rb, line 4 def self.run(params) UI.message("The gen_dev_workspace plugin is working!") end