Module: RuboCop::Cask::Constants Private

Included in:
AST::Node
Defined in:
rubocops/cask/constants/stanza.rb

Overview

This module is part of a private API. This module may only be used in the Homebrew/brew repository. Third parties should avoid using this module if possible, as it may be removed or changed without warning.

Constants available globally for use in all cask cops.

Constant Summary collapse

ON_SYSTEM_METHODS =

This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.

[:arm, :intel, *MacOSVersion::SYMBOLS.keys].map { |option| :"on_#{option}" }.freeze
ON_SYSTEM_METHODS_STANZA_ORDER =

This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.

[
  :arm,
  :intel,
  *MacOSVersion::SYMBOLS.reverse_each.to_h.keys, # Oldest OS blocks first since that's more common in Casks.
].map { |option, _| :"on_#{option}" }.freeze
STANZA_GROUPS =

This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.

[
  [:arch, :on_arch_conditional],
  [:version, :sha256],
  ON_SYSTEM_METHODS_STANZA_ORDER,
  [:language],
  [:url, :appcast, :name, :desc, :homepage],
  [:livecheck],
  [:deprecate!, :disable!],
  [
    :auto_updates,
    :conflicts_with,
    :depends_on,
    :container,
  ],
  [
    :suite,
    :app,
    :pkg,
    :installer,
    :binary,
    :manpage,
    :colorpicker,
    :dictionary,
    :font,
    :input_method,
    :internet_plugin,
    :keyboard_layout,
    :prefpane,
    :qlplugin,
    :mdimporter,
    :screen_saver,
    :service,
    :audio_unit_plugin,
    :vst_plugin,
    :vst3_plugin,
    :artifact,
    :stage_only,
  ],
  [:preflight],
  [:postflight],
  [:uninstall_preflight],
  [:uninstall_postflight],
  [:uninstall],
  [:zap],
  [:caveats],
].freeze
STANZA_GROUP_HASH =

This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.

STANZA_GROUPS.each_with_object({}) do |stanza_group, hash|
  stanza_group.each { |stanza| hash[stanza] = stanza_group }
end.freeze
STANZA_ORDER =

This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.

STANZA_GROUPS.flatten.freeze
UNINSTALL_METHODS_ORDER =

This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.

[
  :early_script,
  :launchctl,
  :quit,
  :signal,
  :login_item,
  :kext,
  :script,
  :pkgutil,
  :delete,
  :trash,
  :rmdir,
].freeze