class Fastlane::Helper::OptionsHelper

Public Class Methods

filter() click to toggle source
# File lib/fastlane/plugin/moronepo/helper/options_helper.rb, line 22
def self.filter
  FastlaneCore::ConfigItem.new(key: :filter,
      env_name: "FL_MORONEPO_FILTER",
      description: "Runs the command for projects that match filter. Available: [hasTests, !hasTests, isFlutter, !isFlutter, isRoot, !isRoot]",
      optional: true,
      type: Array)
end
project() click to toggle source
# File lib/fastlane/plugin/moronepo/helper/options_helper.rb, line 14
def self.project
  FastlaneCore::ConfigItem.new(key: :project,
      env_name: "FL_MORONEPO_PROJECT",
      description: "Specifies the project to run the command in",
      optional: true,
      type: String)
end
working_directory() click to toggle source
# File lib/fastlane/plugin/moronepo/helper/options_helper.rb, line 6
def self.working_directory
  FastlaneCore::ConfigItem.new(key: :working_directory,
      env_name: "FL_MORONEPO_WORKING_DIRECTORY",
      description: "Specifies the working directory",
      optional: true,
      type: String)
end