Class: Homebrew::Cmd::Outdated Private
- Inherits:
-
AbstractCommand
- Object
- AbstractCommand
- Homebrew::Cmd::Outdated
- Defined in:
- cmd/outdated.rb,
sorbet/rbi/dsl/homebrew/cmd/outdated.rbi
This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.
Defined Under Namespace
Classes: Args
Instance Method Summary collapse
- #args ⇒ Homebrew::Cmd::Outdated::Args private
- #run ⇒ void private
Methods inherited from AbstractCommand
command, command_name, dev_cmd?, #initialize, parser, ruby_cmd?
Constructor Details
This class inherits a constructor from Homebrew::AbstractCommand
Instance Method Details
#args ⇒ Homebrew::Cmd::Outdated::Args
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
10 |
# File 'sorbet/rbi/dsl/homebrew/cmd/outdated.rbi', line 10 def args; end |
#run ⇒ void
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
This method returns an undefined value.
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'cmd/outdated.rb', line 51 def run case json_version(args.json) when :v1 odie "`brew outdated --json=v1` is no longer supported. Use brew outdated --json=v2 instead." when :v2, :default formulae, casks = if args.formula? [outdated_formulae, []] elsif args.cask? [[], outdated_casks] else outdated_formulae_casks end json = { formulae: json_info(formulae), casks: json_info(casks), } # json v2.8.1 is inconsistent it how it renders empty arrays, # so we use `[]` for consistency: puts JSON.pretty_generate(json).gsub(/\[\n\n\s*\]/, "[]") outdated = formulae + casks else outdated = if args.formula? outdated_formulae elsif args.cask? outdated_casks else outdated_formulae_casks.flatten end print_outdated(outdated) end Homebrew.failed = args.named.present? && outdated.present? end |