module Fastlane

rubocop:disable Lint/AssignmentInCondition

rubocop:disable Style/CaseEquality rubocop:disable Style/MultilineTernaryOperator rubocop:disable Style/NestedTernaryOperator

rubocop:disable all

Constants

DESCRIPTION
Helper
MINIMUM_XCODE_RELEASE
ROOT
RUBOCOP_REQUIREMENT
SHELLS
TOOLS
TOOL_CONFIG_FILES

a list of all the config files we currently expect

UI
VERSION

Attributes

external_actions[R]

Public Class Methods

load_actions() click to toggle source
# File fastlane/lib/fastlane.rb, line 37
def load_actions
  Fastlane::Actions.load_default_actions
  Fastlane::Actions.load_helpers

  if FastlaneCore::FastlaneFolder.path
    actions_path = File.join(FastlaneCore::FastlaneFolder.path, 'actions')
    @external_actions = Fastlane::Actions.load_external_actions(actions_path) if File.directory?(actions_path)
  end
end
plugin_manager() click to toggle source
# File fastlane/lib/fastlane.rb, line 49
def plugin_manager
  @plugin_manager ||= Fastlane::PluginManager.new
end